Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
rtg0795 committed Apr 12, 2022
1 parent e7803b9 commit 78d1f0c
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.8.0",
sha256 = "d2948c066a0bc3f45cb8072def03c85f50af8a75606bbdff91715ef8c5f2a28c",
strip_prefix = "tensorflow-2.9.0-rc0",
sha256 = "c3febdfe5af40886b2918a7a54c7f76330b777e13fe0c7a460dcab967569c313",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.8.0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.9.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.8.0
pip install tensorflow==2.9.0rc0
fi
else
pip install tensorflow==2.8.0
pip install tensorflow==2.9.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.8.1'
project_version = '2.9.0-rc0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -78,7 +78,7 @@ def finalize_options(self):
'tensorflow_hub>=0.8.0',
],
extras_require={
'tensorflow_cpu': ['tensorflow-cpu>=2.8.0, <2.9',],
'tensorflow_cpu': ['tensorflow-cpu>=2.9.0rc0, <2.10',],
'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 @@ -91,4 +91,4 @@
]

remove_undocumented(__name__, _allowed_symbols)
__version__ = "2.8.1"
__version__ = "2.9.0-rc0"

0 comments on commit 78d1f0c

Please sign in to comment.