Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Sep 7, 2022
1 parent 1617dce commit 4a098cd
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 @@ -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"
],
)

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.10.0rc0
pip install tensorflow==2.10.0
fi
else
pip install tensorflow==2.10.0rc0
pip install tensorflow==2.10.0
fi
fi

Expand Down
8 changes: 4 additions & 4 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.10.0-rc0'
project_version = '2.10.0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@
]

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

0 comments on commit 4a098cd

Please sign in to comment.