Skip to content

Commit

Permalink
BLD: Don't require gfortran on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Sanderson committed May 27, 2016
1 parent 0cef5ef commit e7cdcc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda/zipline/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit e7cdcc7

Please sign in to comment.