Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Oct 28, 2024
1 parent d49b507 commit 494ce6e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
)

Expand Down
6 changes: 3 additions & 3 deletions oss_scripts/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

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.18.0-rc0'
project_version = '2.18.0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -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',
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.18.0-rc0"
__version__ = "2.18.0"

0 comments on commit 494ce6e

Please sign in to comment.