Skip to content

Commit

Permalink
Merge pull request #59 from civisanalytics/add-sklearn-version-upper-…
Browse files Browse the repository at this point in the history
…bound

add upper bound <0.24.0 for scikit-learn requirement
  • Loading branch information
mheilman authored Mar 12, 2021
2 parents 23c0faa + b1d8921 commit bc1ea49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.3.1] - 2020-03-15
### Changed
- Added upper bound `<0.24.0` for scikit-learn version (#59)

## [0.3.0] - 2020-10-28
### Changed
- Fix dependencies to make stacking compatible with scikit-learn 0.23+ (#54)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
joblib>=0.14.0
numpy>=1.12,<2.0
pandas>=0.25
scikit-learn>=0.18.1
scikit-learn>=0.18.1,<0.24.0
scipy>=0.14,<2.0
six~=1.10
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(fname):
return _in.read()


_VERSION = '0.3.0'
_VERSION = '0.3.1'

setup(version=_VERSION,
name="civisml-extensions",
Expand Down

0 comments on commit bc1ea49

Please sign in to comment.