Skip to content

Commit fb6c679

Browse files
committed
Update version
1 parent 60bdd68 commit fb6c679

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Diff for: WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ http_archive(
6363

6464
http_archive(
6565
name = "org_tensorflow",
66-
strip_prefix = "tensorflow-2.9.0-rc0",
67-
sha256 = "c3febdfe5af40886b2918a7a54c7f76330b777e13fe0c7a460dcab967569c313",
66+
strip_prefix = "tensorflow-2.9.0",
67+
sha256 = "fd6fae5aa9014cb898c1cca1e44158d0d0ba5cbe9385eab50a1c3f62660fa101",
6868
urls = [
69-
"https://github.com/tensorflow/tensorflow/archive/v2.9.0-rc0.zip"
69+
"https://github.com/tensorflow/tensorflow/archive/v2.9.0.zip"
7070
],
7171
)
7272

Diff for: 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.7.0
5050
else
51-
pip install tensorflow==2.9.0rc0
51+
pip install tensorflow==2.9.0
5252
fi
5353
else
54-
pip install tensorflow==2.9.0rc0
54+
pip install tensorflow==2.9.0
5555
fi
5656
fi
5757

Diff for: 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.9.0-rc1'
35+
project_version = '2.9.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.9.0rc0, <2.10; platform_machine != "arm64" or platform_system != "Darwin"',
77-
'tensorflow-macos>=2.9.0rc0, <2.10; platform_machine == "arm64" and platform_system == "Darwin"',
76+
'tensorflow>=2.9.0, <2.10; platform_machine != "arm64" or platform_system != "Darwin"',
77+
'tensorflow-macos>=2.9.0, <2.10; platform_machine == "arm64" and platform_system == "Darwin"',
7878
'tensorflow_hub>=0.8.0',
7979
],
8080
extras_require={
81-
'tensorflow_cpu': ['tensorflow-cpu>=2.9.0rc0, <2.10',],
81+
'tensorflow_cpu': ['tensorflow-cpu>=2.9.0, <2.10',],
8282
'tests': [
8383
'absl-py',
8484
'pytest',

Diff for: tensorflow_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@
9292
]
9393

9494
remove_undocumented(__name__, _allowed_symbols)
95-
__version__ = "2.9.0-rc1"
95+
__version__ = "2.9.0"

0 commit comments

Comments
 (0)