Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
gregbillock committed Apr 6, 2021
1 parent 6df47cc commit 122fe43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ http_archive(

http_archive(
name = "org_tensorflow",
strip_prefix = "tensorflow-2.4.0",
sha256 = "1fee58466b88d276f1eb3fb9126b1cd3b261460540b5ac415ca239160e101edb",
strip_prefix = "tensorflow-2.5.0-rc0",
sha256 = "73883308bb0aacd88e0c6423cc9e8f4b654c4af9923c860a3de72b1627652cc7",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.4.0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.5.0-rc0.zip"
],
patches = ["//third_party/tensorflow:tf.patch"],
patch_args = ["-p1"],
Expand Down
2 changes: 1 addition & 1 deletion oss_scripts/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
echo 'Using installed tensorflow.'
else
echo 'Installing tensorflow.'
pip install tensorflow==2.4.0
pip install tensorflow==2.5.0rc0
fi

if is_windows; then
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.4.3'
project_version = '2.5.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.4.0, <2.5',
'tensorflow>=2.5.0rc0, <2.6',
'tensorflow_hub>=0.8.0',
],
extras_require={
Expand Down

0 comments on commit 122fe43

Please sign in to comment.