Skip to content

Commit

Permalink
Miscellaneous deps updates (#4228)
Browse files Browse the repository at this point in the history
* Update min shap and unpin numpy

* Pin imblearn
  • Loading branch information
eccabay committed Jul 10, 2023
1 parent 4039bb3 commit c0802df
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ outputs:
- pip
- setuptools ==58.0.4
run:
- numpy >=1.21.0, <=1.23.5
- numpy >=1.21.0
- pandas >=1.5.0
- dask >=2022.2.0, !=2022.10.1
- scipy >=1.5.0
Expand All @@ -34,7 +34,7 @@ outputs:
- colorama >=0.4.4
- cloudpickle >=1.5.0
- click>=8.0.0
- shap >=0.40.0
- shap >=0.42.0
- texttable >=1.6.2
- woodwork >=0.22.0
- featuretools>=1.16.0
Expand Down Expand Up @@ -78,7 +78,7 @@ outputs:
- lightgbm >=2.3.1
- lime >=0.2.0.1
- python >=3.8.*
- imbalanced-learn >=0.9.1
- imbalanced-learn >=0.9.1, <0.11.0
- sktime ==0.17.0
- pmdarima >=1.8.5
- vowpalwabbit >=8.11.0
Expand Down
4 changes: 2 additions & 2 deletions core-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.21.0, <=1.23.5
numpy>=1.21.0
pandas>=1.5.0
scipy>=1.5.0
scikit-learn>=1.2.1
Expand All @@ -7,7 +7,7 @@ pyzmq>=20.0.0
colorama>=0.4.4
cloudpickle>=1.5.0
click>=8.0.0
shap>=0.40.0
shap>=0.42.0
statsmodels>=0.12.2
texttable>=1.6.2
woodwork>= 0.21.1
Expand Down
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release Notes
* Fixes
* `IDColumnsDataCheck` now works with Unknown data type :pr:`4203`
* Changes
* Upgraded minimum SHAP version to 0.42.0 and unpinned numpy version :pr:`4228`
* Documentation Changes
* Updated API reference :pr:`4213`
* Testing Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ matplotlib==3.7.2
matplotlib-inline==0.1.6
networkx==3.1
nlp-primitives==2.11.0
numpy==1.23.5
numpy==1.24.4
packaging==23.1
pandas==1.5.3
plotly==5.15.0
Expand All @@ -28,7 +28,7 @@ scikit-learn==1.2.2
scikit-optimize==0.9.0
scipy==1.10.1
seaborn==0.12.2
shap==0.41.0
shap==0.42.0
sktime==0.17.0
statsmodels==0.14.0
texttable==1.6.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ scikit-learn==1.2.2
scikit-optimize==0.9.0
scipy==1.5.0
seaborn==0.11.1
shap==0.40.0
shap==0.42.0
sktime==0.17.0
statsmodels==0.12.2
texttable==1.6.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ scikit-learn==1.2.2
scikit-optimize==0.9.0
scipy==1.5.0
seaborn==0.11.1
shap==0.40.0
shap==0.42.0
sktime==0.17.0
statsmodels==0.12.2
texttable==1.6.2
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ keywords = ["data science", "machine learning", "optimization", "automl"]
license = {file = "LICENSE"}
requires-python = ">=3.8,<4"
dependencies = [
"numpy >= 1.21.0, <=1.23.5",
"numpy >= 1.21.0",
"pandas >= 1.5.0",
"scipy >= 1.5.0",
"scikit-learn >= 1.2.2",
Expand All @@ -38,7 +38,7 @@ dependencies = [
"colorama >= 0.4.4",
"cloudpickle >= 1.5.0",
"click >= 8.0.0",
"shap >= 0.40.0",
"shap >= 0.42.0",
"statsmodels >= 0.12.2",
"texttable >= 1.6.2",
"woodwork[dask] >= 0.22.0",
Expand All @@ -57,7 +57,7 @@ dependencies = [
"graphviz >= 0.13; platform_system!='Windows'",
"seaborn >= 0.11.1",
"category-encoders >= 2.2.2, <= 2.5.1.post0",
"imbalanced-learn >= 0.9.1",
"imbalanced-learn >= 0.9.1, <0.11.0",
"pmdarima >= 1.8.5",
"sktime == 0.17.0",
"lime >= 0.2.0.1",
Expand Down

0 comments on commit c0802df

Please sign in to comment.