Skip to content

Commit

Permalink
numpy version lower than 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msamsami committed Jun 22, 2024
1 parent b72e861 commit ed9a92e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ classifiers = [
requires-python = ">=3.8,<3.13"
dependencies = [
"pandas>=1.4.1",
"numpy<=2.0.0",
"numpy<2.0.0",
"scipy>=1.8.0",
"scikit-learn>=1.0.2",
"typing-extensions>=4.8.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.4.1
numpy<=2.0.0
numpy<2.0.0
scipy>=1.8.0
scikit-learn>=1.0.2
typing-extensions>=4.8.0
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pandas>=1.4.1
numpy<=2.0.0
numpy<2.0.0
scipy>=1.8.0
scikit-learn>=1.0.2
typing-extensions>=4.8.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ packages = find:
python_requires = >=3.8, <3.13
install_requires =
pandas>=1.4.1
numpy<=2.0.0
numpy<2.0.0
scipy>=1.8.0
scikit-learn>=1.0.2
typing-extensions>=4.8.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
python_requires=">=3.8,<3.13",
install_requires=[
"pandas>=1.4.1",
"numpy<=2.0.0",
"numpy<2.0.0",
"scipy>=1.8.0",
"scikit-learn>=1.0.2",
"typing-extensions>=4.8.0",
Expand Down

0 comments on commit ed9a92e

Please sign in to comment.