Skip to content

Commit 749b7c2

Browse files
committedDec 17, 2019
Update version
1 parent e80d628 commit 749b7c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎oss_scripts/configure.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
2929
echo 'Using installed tensorflow.'
3030
else
3131
echo 'Installing tensorflow.'
32-
pip install tensorflow==2.0.0
32+
pip install tensorflow==2.1.0-rc1
3333
fi
3434

3535
write_to_bazelrc "build:manylinux2010 --crosstool_top=@org_tensorflow//third_party/toolchains/preconfig/ubuntu16.04/gcc7_manylinux2010-nvcc-cuda10.0:toolchain"

‎oss_scripts/pip_package/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools.dist import Distribution
3333

3434
project_name = 'tensorflow-text'
35-
project_version = '2.0.0-rc0'
35+
project_version = '2.1.0-rc0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -73,11 +73,11 @@ def finalize_options(self):
7373
cmdclass={'install': InstallPlatlib},
7474
distclass=BinaryDistribution,
7575
install_requires=[
76-
'tensorflow>=2.0.0, <2.1',
76+
'tensorflow>=2.1.0-rc0, <2.2',
7777
],
7878
extras_require={
7979
'tensorflow_gpu': [
80-
'tensorflow-gpu>=2.0.0, <2.1',
80+
'tensorflow-gpu>=2.1.0-rc0, <2.2',
8181
],
8282
'tests': [
8383
'absl-py',

0 commit comments

Comments
 (0)
Please sign in to comment.