BLD: Don't require gfortran on windows.

This commit is contained in:
Scott Sanderson
2016-05-27 19:27:50 -04:00
parent 0cef5eff2f
commit e7cdcc72ec
+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 %}