Skip to content
This repository was archived by the owner on Jul 7, 2023. It is now read-only.

Commit d7d65f1

Browse files
afrozenatorcopybara-github
authored andcommitted
Pin tfp to 0.7.0 -- their latest version 0.8.0 pins cloudpickle to 1.1.1, which
gym doesn't like (it needs ~1.2) Also upgrade pip/setuptools in travis, this gives better errors so I was able to pin this down. PiperOrigin-RevId: 272572911
1 parent 1e5e7b4 commit d7d65f1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

oss_scripts/oss_pip_install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ set -e # fail and exit on any command erroring
55

66
: "${TF_VERSION:?}"
77

8+
# Make sure we have the latest pip and setuptools installed.
9+
pip install -q -U pip
10+
pip install -q -U setuptools
11+
812
# Make sure we have the latest version of numpy - avoid problems we were
913
# seeing with Python 3
1014
pip install -q -U numpy

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='tensor2tensor',
8-
version='1.14.0',
8+
version='1.14.1',
99
description='Tensor2Tensor',
1010
author='Google Inc.',
1111
author_email='no-reply@google.com',
@@ -56,7 +56,7 @@
5656
'sympy',
5757
'tensorflow-datasets',
5858
'tensorflow-gan',
59-
'tensorflow-probability',
59+
'tensorflow-probability==0.7.0',
6060
'tqdm',
6161
],
6262
extras_require={

0 commit comments

Comments
 (0)