Merge pull request #1238 from quantopian/windows-doesnt-use-gfortran

BLD: Don't require gfortran on windows.
This commit is contained in:
Scott Sanderson
2016-05-27 20:07:31 -04:00
+2 -2
View File
@@ -16,13 +16,13 @@ source:
requirements:
build:
- python {{ PY_VER }}*
- libgfortran ==1 # [np == 19]
- libgfortran ==1 # [(not win) and (np == 19)]
{% for req in data.get('build_requires', []) -%}
- {{req}}
{% endfor %}
run:
- python
- libgfortran ==1 # [np == 19]
- libgfortran ==1 # [(not win) and (np == 19)]
{% for req in data.get('install_requires', []) -%}
- {{req}}
{% endfor %}