Skip to content
This repository has been archived by the owner on Dec 4, 2019. It is now read-only.

Commit

Permalink
Require scikit < 0.20 to allow 0.19.x (#103)
Browse files Browse the repository at this point in the history
* Require scikit < 0.20 to allow 0.19.x; 0.19.2 in particular seems to be required for OS X + Python 3.7. Test against newer maintenance releases of scikit

* OK, scikit 0.18.1 it is
  • Loading branch information
srowen authored Jan 30, 2019
1 parent e13f684 commit 2309ec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ matrix:
- SPARK_VERSION=2.4.0
- NUMPY_VERSION=1.14.3
- PANDAS_VERSION=0.23.0
- SCIKIT_VERSION=0.19.1
- SCIKIT_VERSION=0.19.2

before_install:
- ./bin/download_travis_dependencies.sh
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
INSTALL_REQUIRES = ["scikit-learn >=0.18.1, <=0.19"]
INSTALL_REQUIRES = ["scikit-learn >=0.18.1, <0.20"]

# Project root
ROOT = os.path.abspath(os.getcwd() + "/")
Expand Down

0 comments on commit 2309ec5

Please sign in to comment.