Skip to content

Commit

Permalink
Match TF's numpy version requirement. (<=1.14.5,>=1.13.3). They ran i…
Browse files Browse the repository at this point in the history
…nto some test failures with >=1.15 and restricted the version to get 1.10 out. Fix targeted for 1.11; until then we'll match their req's

PiperOrigin-RevId: 208121036
  • Loading branch information
csuter committed Aug 9, 2018
1 parent af26bd0 commit 5c4587a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@

REQUIRED_PACKAGES = [
'six >= 1.10.0',
'numpy >= 1.11.1',
# Currently numpy>=1.15.0 causes test failures in TensorFlow so they've
# constrained to these slightly older versions. Fix is planned for 1.11
# release.
# TODO(b/112417381): revert this once TF issues are fixed.
'numpy <=1.14.5, >=1.13.3',
]

REQUIRED_TENSORFLOW_VERSION = '1.9.0'
Expand Down

0 comments on commit 5c4587a

Please sign in to comment.