Skip to content

Commit

Permalink
Merge pull request #105 from mheilman/update_tf_version
Browse files Browse the repository at this point in the history
update TF version, remove py3.5 support
  • Loading branch information
mheilman authored Dec 1, 2020
2 parents b08eb2d + c88c03b commit 0ec92dd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ notifications:
email: false
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [2.3.2] - 2020-11-18

### Changed

- Increase minimum version of `tensorflow` to v1.15.4 to fix the security vulnerability reported in https://github.com/advisories/GHSA-4g9f-63rx-5cw4 (#105)
- Set more specific `scikit-learn` version requirements to avoid incompatibilities and test failures (#105)

### Removed
- Remove Python 3.5 support (#105)

## [2.3.1] - 2020-04-06

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ models implemented in `TensorFlow <https://www.tensorflow.org/>`__
Installation
============

This package currently supports Python 3.5, 3.6, and 3.7.
This package currently supports Python 3.6 and 3.7.

Installation with ``pip`` is recommended:

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy~=1.14
scipy~=1.0
scikit-learn>=0.19
tensorflow>=1.15.2,<2
scikit-learn>=0.20.0,<0.23.0
tensorflow>=1.15.4,<2
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@

THIS_DIR = os.path.dirname(os.path.realpath(__file__))

_VERSION = '2.3.1'
_VERSION = '2.3.2'

CLASSIFIERS = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
Expand All @@ -28,7 +27,7 @@
license="BSD-3",
install_requires=['numpy',
'scipy',
'scikit-learn>=0.19',
'tensorflow>=1.15.2,<2'],
'scikit-learn>=0.20.0,<0.23.0',
'tensorflow>=1.15.4,<2'],
classifiers=CLASSIFIERS
)

0 comments on commit 0ec92dd

Please sign in to comment.