BLD: Cap numpy at 1.9 and don't use exact version with other conda reqs

This commit is contained in:
Richard Frank
2016-01-05 20:39:20 -05:00
parent 6d83b06133
commit 6b4287c390
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ requirements:
- python
- setuptools
- cython ==0.22.1
- numpy ==1.9.2
- numpy
run:
- python
{% for req in data.get('install_requires', []) -%}
+2 -2
View File
@@ -117,6 +117,7 @@ def _filter_requirements(lines_iter):
REQ_UPPER_BOUNDS = {
'numpy': '<1.10',
}
@@ -256,8 +257,7 @@ setup(
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Distributed Computing',
],
install_requires=install_requires(strict_bounds=conda_build,
conda_format=conda_build),
install_requires=install_requires(conda_format=conda_build),
extras_require=extras_requires(conda_format=conda_build),
url="http://zipline.io",
)