Skip to content

Commit

Permalink
fix: Downgrade scikit-learn to >=1.1,<1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
saattrupdan committed Jul 5, 2023
1 parent 5443f46 commit e17629c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 29 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ and this project adheres to
speeding up inference. Thanks to @andrepugni for this contribution!

### Fixed
- Downgraded `tables` to 3.7.0 to fix an installation bug.
- Downgraded `tables` to 3.7.x to fix an installation bug.
- Downgraded `scikit-learn` to >=1.1,<1.3, as the decision tree API in v1.3 is
incompatible with the previous ones. This will be dealt with separately in the
future.


## [v4.4.1] - 2023-04-23
Expand Down
54 changes: 27 additions & 27 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tqdm = "^4.62.0"
numpy = "^1.23.0"
pandas = "^1.4.0"
joblib = "^1.2.0"
scikit-learn = "^1.1.1"
scikit-learn = ">=1.1.0,<1.3.0"
xlrd = "^2.0.1"
openpyxl = "^3.0.10"
tables = "~3.7.0"
Expand Down

0 comments on commit e17629c

Please sign in to comment.