From 4a098cd852c0b7ebee621e2d211c7f202dd679c2 Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Wed, 7 Sep 2022 20:39:53 +0000 Subject: [PATCH] Update version --- WORKSPACE | 6 +++--- oss_scripts/configure.sh | 4 ++-- oss_scripts/pip_package/setup.py | 8 ++++---- tensorflow_text/__init__.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 4da29cd6b..09e1e3f95 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -63,10 +63,10 @@ http_archive( http_archive( name = "org_tensorflow", - strip_prefix = "tensorflow-2.10.0-rc0", - sha256 = "93ddae31e681787b6560e443c472f70bfa1bcd3ad577f4c67f5146c7454d3cd2", + strip_prefix = "tensorflow-2.10.0", + sha256 = "d79a95ede8305f14a10dd0409a1e5a228849039c19ccfb90dfe8367295fd04e0", urls = [ - "https://github.com/tensorflow/tensorflow/archive/v2.10.0-rc0.zip" + "https://github.com/tensorflow/tensorflow/archive/v2.10.0.zip" ], ) diff --git a/oss_scripts/configure.sh b/oss_scripts/configure.sh index 793aafc67..172fc1a1d 100755 --- a/oss_scripts/configure.sh +++ b/oss_scripts/configure.sh @@ -48,10 +48,10 @@ else if [[ x"$(arch)" == x"arm64" ]]; then pip install tensorflow-macos==2.9.0 else - pip install tensorflow==2.10.0rc0 + pip install tensorflow==2.10.0 fi else - pip install tensorflow==2.10.0rc0 + pip install tensorflow==2.10.0 fi fi diff --git a/oss_scripts/pip_package/setup.py b/oss_scripts/pip_package/setup.py index 3d0696d4d..fd76013ba 100644 --- a/oss_scripts/pip_package/setup.py +++ b/oss_scripts/pip_package/setup.py @@ -32,7 +32,7 @@ from setuptools.dist import Distribution project_name = 'tensorflow-text' -project_version = '2.10.0-rc0' +project_version = '2.10.0' class BinaryDistribution(Distribution): @@ -73,12 +73,12 @@ def finalize_options(self): cmdclass={'install': InstallPlatlib}, distclass=BinaryDistribution, install_requires=[ - 'tensorflow>=2.10.0rc0, <2.11; platform_machine != "arm64" or platform_system != "Darwin"', - 'tensorflow-macos>=2.10.0rc0, <2.11; platform_machine == "arm64" and platform_system == "Darwin"', + 'tensorflow>=2.10.0, <2.11; platform_machine != "arm64" or platform_system != "Darwin"', + 'tensorflow-macos>=2.10.0, <2.11; platform_machine == "arm64" and platform_system == "Darwin"', 'tensorflow_hub>=0.8.0', ], extras_require={ - 'tensorflow_cpu': ['tensorflow-cpu>=2.10.0rc0, <2.11',], + 'tensorflow_cpu': ['tensorflow-cpu>=2.10.0, <2.11',], 'tests': [ 'absl-py', 'pytest', diff --git a/tensorflow_text/__init__.py b/tensorflow_text/__init__.py index f86e28ec1..84c43f2cb 100644 --- a/tensorflow_text/__init__.py +++ b/tensorflow_text/__init__.py @@ -98,4 +98,4 @@ ] remove_undocumented(__name__, _allowed_symbols) -__version__ = "2.10.0-rc0" +__version__ = "2.10.0"