Skip to content

Commit

Permalink
Merge pull request #559 from guillaume-vignal/fix/numpy<2
Browse files Browse the repository at this point in the history
Temporary Fix for NumPy 2.0 Incompatibility
  • Loading branch information
guillaume-vignal committed Jun 24, 2024
2 parents 16db265 + a04efa5 commit 32ddddf
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 32ddddf

Please sign in to comment.