Skip to content

Commit

Permalink
[PARO-736] Remove sklearn version's upper bound; Turn on Python 3.7 a…
Browse files Browse the repository at this point in the history
…nd 3.8 for Travis CI builds (#50)

* DEP remove sklearn's upper version bound

* MAINT turn on python 3.7 on Travid CI builds

* MAINT update changelog

* MAINT turn on Python 3.8 as wel for Travis CI

* MAINT update changelog
  • Loading branch information
jacksonllee committed Dec 4, 2019
1 parent abb83cf commit 7f9e7b1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -6,6 +6,8 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install --upgrade pip setuptools
- pip install -r dev-requirements.txt
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,8 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.2.0] - 2019-11-22
## [0.2.0] - 2019-12-11
### Added
- Turn on Python 3.7 and 3.8 for Travis CI builds. (#50)

### Changed
- Removed the upper version bound for sklearn. (#50)
- Update tests and requirements.txt to allow sklearn 0.20 and above. (#47)
- Instead of boolean flag for `dummy_na`, have None/False (no dummying),
'expanded' (matches previous True behavior), and 'all' (dummy NAs
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Expand Up @@ -3,4 +3,4 @@ flake8
nose
mock==2.0.0 ; python_version >= '2.7' and python_version < '3.0'
# Estimator checks in test_preprocessing are sklearn>0.20 only
scikit-learn>=0.20,<0.22
scikit-learn>=0.20
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
scikit-learn>=0.18.1,<0.22
scikit-learn>=0.18.1
scipy>=0.14,<2.0
numpy~=1.10
pandas~=0.19; python_version >= '3.5'
Expand Down

0 comments on commit 7f9e7b1

Please sign in to comment.