From 494ce6e79c06287bc6c30fc1e587392ea415dd02 Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Mon, 28 Oct 2024 17:38:20 +0000 Subject: [PATCH] Update version --- WORKSPACE | 6 +++--- oss_scripts/configure.sh | 6 +++--- oss_scripts/pip_package/setup.py | 6 +++--- tensorflow_text/__init__.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 3efb54861..13cb9bcc6 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -56,10 +56,10 @@ http_archive( http_archive( name = "org_tensorflow", - strip_prefix = "tensorflow-2.18.0-rc0", - sha256 = "4c0d58d4516c7cebab91318cb1ed2e5585f772b7ee4f081958df764b4c616422", + strip_prefix = "tensorflow-2.18.0", + sha256 = "d55768075e7568f02748768f4bc43159370170c18d0da21e9535007c61452d50", urls = [ - "https://github.com/tensorflow/tensorflow/archive/v2.18.0-rc0.zip" + "https://github.com/tensorflow/tensorflow/archive/v2.18.0.zip" ], ) diff --git a/oss_scripts/configure.sh b/oss_scripts/configure.sh index 49c8b615b..81e247854 100755 --- a/oss_scripts/configure.sh +++ b/oss_scripts/configure.sh @@ -41,12 +41,12 @@ else if is_macos; then # Only Apple Silicon will be installed with tensorflow-macos. if [[ x"$(arch)" == x"arm64" ]]; then - pip install tensorflow==2.18.0rc0 + pip install tensorflow==2.18.0 else - pip install tensorflow==2.18.0rc0 + pip install tensorflow==2.18.0 fi else - pip install tensorflow==2.18.0rc0 + pip install tensorflow==2.18.0 fi fi diff --git a/oss_scripts/pip_package/setup.py b/oss_scripts/pip_package/setup.py index c537d6574..25409897b 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.18.0-rc0' +project_version = '2.18.0' class BinaryDistribution(Distribution): @@ -74,12 +74,12 @@ def finalize_options(self): distclass=BinaryDistribution, install_requires=[ ( - 'tensorflow>=2.18.0rc0, <2.19', + 'tensorflow>=2.18.0, <2.19', ), ], extras_require={ 'tensorflow_cpu': [ - 'tensorflow-cpu>=2.18.0rc0, <2.19', + 'tensorflow-cpu>=2.18.0, <2.19', ], 'tests': [ 'absl-py', diff --git a/tensorflow_text/__init__.py b/tensorflow_text/__init__.py index d87673baa..7cdfedb6e 100644 --- a/tensorflow_text/__init__.py +++ b/tensorflow_text/__init__.py @@ -110,4 +110,4 @@ ] remove_undocumented(__name__, _allowed_symbols) -__version__ = "2.18.0-rc0" +__version__ = "2.18.0"