Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Jul 6, 2023
1 parent 95360eb commit 917a681
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 @@ -70,10 +70,10 @@ http_archive(

http_archive(
name = "org_tensorflow",
strip_prefix = "tensorflow-2.13.0-rc0",
sha256 = "d6aefd6bc65ad2cab81e0bdf0e6be6b0e9d4a439580ed21d9c0defdd1334295e",
strip_prefix = "tensorflow-2.13.0",
sha256 = "447cdb65c80c86d6c6cf1388684f157612392723eaea832e6392d219098b49de",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.13.0-rc0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.13.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.13.0rc0
pip install tensorflow==2.13.0
fi
else
pip install tensorflow==2.13.0rc0
pip install tensorflow==2.13.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.13.0-rc0'
project_version = '2.13.0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -74,11 +74,11 @@ def finalize_options(self):
distclass=BinaryDistribution,
install_requires=[
(
'tensorflow>=2.13.0rc0, <2.14; platform_machine != "arm64" or'
'tensorflow>=2.13.0, <2.14; platform_machine != "arm64" or'
' platform_system != "Darwin"'
),
(
'tensorflow-macos>=2.13.0rc0, <2.14; platform_machine == "arm64" and'
'tensorflow-macos>=2.13.0, <2.14; platform_machine == "arm64" and'
' platform_system == "Darwin"'
),
'tensorflow_hub>=0.8.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.13.0-rc0"
__version__ = "2.13.0"

0 comments on commit 917a681

Please sign in to comment.