[go: nahoru, domu]

Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Nov 14, 2023
1 parent 00e350a commit 0f59980
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.15.0-rc0",
sha256 = "45b722efebb4355159eac54f6520675c42ee7c3c21670abf0a371e66210bf8bd",
strip_prefix = "tensorflow-2.15.0",
sha256 = "f771db8d96ca13c72f73c85c9cfb6f5358e2de3dd62a97a9ae4b672fe4c6d094",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.15.0-rc0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.15.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.13.0
else
pip install tensorflow==2.15.0rc0
pip install tensorflow==2.15.0
fi
else
pip install tensorflow==2.15.0rc0
pip install tensorflow==2.15.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.15.0-rc0'
project_version = '2.15.0'


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

0 comments on commit 0f59980

Please sign in to comment.