File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
29
29
echo ' Using installed tensorflow.'
30
30
else
31
31
echo ' Installing tensorflow.'
32
- pip install tensorflow==2.0.0
32
+ pip install tensorflow==2.1.0-rc1
33
33
fi
34
34
35
35
write_to_bazelrc " build:manylinux2010 --crosstool_top=@org_tensorflow//third_party/toolchains/preconfig/ubuntu16.04/gcc7_manylinux2010-nvcc-cuda10.0:toolchain"
Original file line number Diff line number Diff line change 32
32
from setuptools .dist import Distribution
33
33
34
34
project_name = 'tensorflow-text'
35
- project_version = '2.0 .0-rc0'
35
+ project_version = '2.1 .0-rc0'
36
36
37
37
38
38
class BinaryDistribution (Distribution ):
@@ -73,11 +73,11 @@ def finalize_options(self):
73
73
cmdclass = {'install' : InstallPlatlib },
74
74
distclass = BinaryDistribution ,
75
75
install_requires = [
76
- 'tensorflow>=2.0.0 , <2.1 ' ,
76
+ 'tensorflow>=2.1.0-rc0 , <2.2 ' ,
77
77
],
78
78
extras_require = {
79
79
'tensorflow_gpu' : [
80
- 'tensorflow-gpu>=2.0.0 , <2.1 ' ,
80
+ 'tensorflow-gpu>=2.1.0-rc0 , <2.2 ' ,
81
81
],
82
82
'tests' : [
83
83
'absl-py' ,
You can’t perform that action at this time.
0 commit comments