Skip to content

Commit 706b36e

Browse files
committed
Update version
1 parent 29e336d commit 706b36e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ http_archive(
106106

107107
http_archive(
108108
name = "org_tensorflow",
109-
strip_prefix = "tensorflow-2.3.0-rc1",
110-
sha256 = "cd44bd102f9928d93df1165a407cdf6a9a739ba8b9c0741ea05cb736bdb17312",
109+
strip_prefix = "tensorflow-2.3.0",
110+
sha256 = "1a6f24d9e3b1cf5cc55ecfe076d3a61516701bc045925915b26a9d39f4084c34",
111111
urls = [
112-
"https://github.com/tensorflow/tensorflow/archive/v2.3.0-rc1.zip"
112+
"https://github.com/tensorflow/tensorflow/archive/v2.3.0.zip"
113113
],
114114
)
115115

oss_scripts/configure.sh

Lines changed: 1 addition & 1 deletion
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.3.0rc1
32+
pip install tensorflow==2.3.0
3333
fi
3434

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

oss_scripts/pip_package/setup.py

Lines changed: 2 additions & 2 deletions
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.3.0-rc1'
35+
project_version = '2.3.0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -73,7 +73,7 @@ def finalize_options(self):
7373
cmdclass={'install': InstallPlatlib},
7474
distclass=BinaryDistribution,
7575
install_requires=[
76-
'tensorflow>=2.3.0rc0, <2.4',
76+
'tensorflow>=2.3.0, <2.4',
7777
],
7878
extras_require={
7979
'tensorflow_gpu': ['tensorflow-gpu>=2.1.0, <2.2',],

0 commit comments

Comments
 (0)