Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
no-reply committed Oct 6, 2023
1 parent 8f6bcbd commit 02879b2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ http_archive(
name = "org_tensorflow",
patch_args = ["-p1"],
patches = ["//third_party/tensorflow:tf.patch"],
strip_prefix = "tensorflow-2.14.0-rc0",
sha256 = "99c6f486d1b361f1dd6de52df27f5d9c69e114b3540607746b967d1bd2ca16d4",
strip_prefix = "tensorflow-2.14.0",
sha256 = "63418e2ecdac704a6f8aea6f395ccc3677e49b06f839a028e3da9f5115dcd222",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.14.0-rc0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.14.0.zip"
],
)

Expand Down
4 changes: 2 additions & 2 deletions oss_scripts/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ else
if [[ x"$(arch)" == x"arm64" ]]; then
pip install tensorflow-macos==2.9.0
else
pip install tensorflow==2.14.0rc0
pip install tensorflow==2.14.0
fi
else
pip install tensorflow==2.14.0rc0
pip install tensorflow==2.14.0
fi
fi

Expand Down
6 changes: 3 additions & 3 deletions oss_scripts/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from setuptools.dist import Distribution

project_name = 'tensorflow-text'
project_version = '2.14.0-rc0'
project_version = '2.14.0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -74,11 +74,11 @@ def finalize_options(self):
distclass=BinaryDistribution,
install_requires=[
(
'tensorflow>=2.14.0rc0, <2.15; platform_machine != "arm64" or'
'tensorflow>=2.14.0, <2.15; platform_machine != "arm64" or'
' platform_system != "Darwin"'
),
(
'tensorflow-macos>=2.14.0rc0, <2.15; platform_machine == "arm64" and'
'tensorflow-macos>=2.14.0, <2.15; platform_machine == "arm64" and'
' platform_system == "Darwin"'
),
'tensorflow_hub>=0.13.0',
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@
]

remove_undocumented(__name__, _allowed_symbols)
__version__ = "2.14.0-rc0"
__version__ = "2.14.0"

0 comments on commit 02879b2

Please sign in to comment.