Skip to content

Commit

Permalink
Merge pull request #80 from IMMM-SFA/hotfix/block-numpy2
Browse files Browse the repository at this point in the history
force numpy to be <2
  • Loading branch information
erexer authored Jul 9, 2024
2 parents cab48c5 + 256c8e7 commit ca4a861
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.21.1
numpy>=1.21.1,<2
pandas>=1.3.1
scipy>=1.8.1
SALib>=1.4.4
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def get_requirements():
description='Jupyter notebook support for the MSD ebook',
long_description=readme(),
long_description_content_type="text/markdown",
python_requires='>=3.6.*, <4',
python_requires='>=3.6, <4',
include_package_data=True,
install_requires=[
"numpy>=1.21.1",
"numpy>=1.21.1,<2",
"scipy>=1.8.1",
"SALib>=1.4.4",
"statsmodels>=0.12.2",
Expand Down

0 comments on commit ca4a861

Please sign in to comment.