Skip to content

Commit

Permalink
limit numpy version less than 2.0 ; not supported yet
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-vignal committed Jun 24, 2024
1 parent 16db265 commit a04efa5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip>=23.2.0
numpy>1.18.0
numpy>1.18.0,<2
dash==2.15.0
catboost>=1.0.1
category-encoders>=2.6.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
requirements = [
"plotly>=5.0.0",
"matplotlib>=3.2.0",
"numpy>1.18.0",
"numpy>1.18.0,<2",
"pandas>=2.1.0",
"shap>=0.45.0",
"Flask<2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion shapash/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (2, 5, 0)
VERSION = (2, 5, 1)

__version__ = ".".join(map(str, VERSION))

0 comments on commit a04efa5

Please sign in to comment.