Skip to content

Commit 1c5ab77

Browse files
author
no-reply
committed
Update version
1 parent e8b5125 commit 1c5ab77

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ http_archive(
7070

7171
http_archive(
7272
name = "org_tensorflow",
73-
strip_prefix = "tensorflow-2.12.0-rc0",
74-
sha256 = "44cc6687fea2fedb19c0fb27cb48bddc21b11e489bc99ebfca57b28f7aee8e5a",
73+
strip_prefix = "tensorflow-2.12.0",
74+
sha256 = "af0584df1a4e28763c32c218b39f8c4f3784fabb6a8859b00c02d743864dc191",
7575
urls = [
76-
"https://github.com/tensorflow/tensorflow/archive/v2.12.0-rc0.zip"
76+
"https://github.com/tensorflow/tensorflow/archive/v2.12.0.zip"
7777
],
7878
)
7979

oss_scripts/configure.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ else
4848
if [[ x"$(arch)" == x"arm64" ]]; then
4949
pip install tensorflow-macos==2.9.0
5050
else
51-
pip install tensorflow==2.12.0rc0
51+
pip install tensorflow==2.12.0
5252
fi
5353
else
54-
pip install tensorflow==2.12.0rc0
54+
pip install tensorflow==2.12.0
5555
fi
5656
fi
5757

oss_scripts/pip_package/setup.py

+4-4
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.12.0-rc0'
35+
project_version = '2.12.0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -73,12 +73,12 @@ def finalize_options(self):
7373
cmdclass={'install': InstallPlatlib},
7474
distclass=BinaryDistribution,
7575
install_requires=[
76-
'tensorflow>=2.12.0rc0, <2.13; platform_machine != "arm64" or platform_system != "Darwin"',
77-
'tensorflow-macos>=2.12.0rc0, <2.13; platform_machine == "arm64" and platform_system == "Darwin"',
76+
'tensorflow>=2.12.0, <2.13; platform_machine != "arm64" or platform_system != "Darwin"',
77+
'tensorflow-macos>=2.12.0, <2.13; platform_machine == "arm64" and platform_system == "Darwin"',
7878
'tensorflow_hub>=0.8.0',
7979
],
8080
extras_require={
81-
'tensorflow_cpu': ['tensorflow-cpu>=2.12.0rc0, <2.13',],
81+
'tensorflow_cpu': ['tensorflow-cpu>=2.12.0, <2.13',],
8282
'tests': [
8383
'absl-py',
8484
'pytest',

tensorflow_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@
106106
]
107107

108108
remove_undocumented(__name__, _allowed_symbols)
109-
__version__ = "2.12.0-rc0"
109+
__version__ = "2.12.0"

0 commit comments

Comments
 (0)