Skip to content

Commit

Permalink
FIX-#2672: pin numpy>=1.16.5,<1.20 (#2673)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Feb 1, 2021
1 parent 03ea9b2 commit 9cb165d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- pandas==1.1.5
- numpy
- numpy>=1.16.5,<1.20 # pandas gh-39513
- pyarrow>=1.0.0
- dask[complete]>=2.12.0,<=2.19.0
- distributed>=2.12.0,<=2.19.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pandas==1.1.5
numpy
numpy>=1.16.5,<1.20 # pandas gh-39513
pyarrow>=1.0.0
dask[complete]>=2.12.0,<=2.19.0
distributed>=2.12.0,<=2.19.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_omnisci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- pandas==1.1.5
- pyarrow==1.0.0
- numpy
- numpy>=1.16.5,<1.20 # pandas gh-39513
- pip
- pytest>=6.0.1
- pytest-cov>=2.10.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def is_pure(self):
url="https://github.com/modin-project/modin",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pandas==1.1.5", "packaging"],
install_requires=["pandas==1.1.5", "packaging", "numpy>=1.16.5,<1.20"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down

0 comments on commit 9cb165d

Please sign in to comment.