Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Manish Mohan committed Jan 12, 2022
1 parent 039d54f commit a7e1b5b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.7.0",
sha256 = "249b48ddee927801c7a4f8e5442cf1a3c860f6f46b85a2ff7a78b501507dd561",
strip_prefix = "tensorflow-2.8.0-rc0",
sha256 = "f57872afe6831b35df591004cee57fe40870a52fc19faf502e89334db7cc6686",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.7.0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.8.0-rc0.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.7.0
else
pip install tensorflow==2.7.0
pip install tensorflow==2.8.0rc0
fi
else
pip install tensorflow==2.7.0
pip install tensorflow==2.8.0rc0
fi
fi

Expand Down
4 changes: 2 additions & 2 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.7.0'
project_version = '2.8.0-rc0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -73,7 +73,7 @@ def finalize_options(self):
cmdclass={'install': InstallPlatlib},
distclass=BinaryDistribution,
install_requires=[
'tensorflow>=2.7.0, <2.8.0; platform_machine != "arm64" or platform_system != "Darwin"',
'tensorflow>=2.8.0rc0, <2.9',
'tensorflow-macos>=2.7.0, <2.8.0; 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 @@ -89,4 +89,4 @@
]

remove_undocumented(__name__, _allowed_symbols)
__version__ = "2.7.0"
__version__ = "2.8.0-rc0"

0 comments on commit a7e1b5b

Please sign in to comment.