Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
broken committed Nov 16, 2020
1 parent 116a21f commit e200a15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ http_archive(

http_archive(
name = "org_tensorflow",
strip_prefix = "tensorflow-2.3.0",
sha256 = "1a6f24d9e3b1cf5cc55ecfe076d3a61516701bc045925915b26a9d39f4084c34",
strip_prefix = "tensorflow-2.4.0-rc1",
sha256 = "ea76e3124328d5f62da0804def78a78453948cd029a2d976950e553a043f9849",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.3.0.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.4.0-rc1.zip"
],
)

Expand Down
2 changes: 1 addition & 1 deletion oss_scripts/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
echo 'Using installed tensorflow.'
else
echo 'Installing tensorflow.'
pip install tensorflow==2.3.0
pip install tensorflow==2.4.0rc1
fi

write_to_bazelrc "build:manylinux2010 --crosstool_top=@org_tensorflow//third_party/toolchains/preconfig/ubuntu16.04/gcc7_manylinux2010-nvcc-cuda10.1:toolchain"
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.3.0'
project_version = '2.4.0-rc0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -73,12 +73,12 @@ def finalize_options(self):
cmdclass={'install': InstallPlatlib},
distclass=BinaryDistribution,
install_requires=[
'tensorflow>=2.3.0, <2.4',
'tensorflow>=2.4.0rc0, <2.5',
'tensorflow_hub>=0.8.0',
],
extras_require={
'tensorflow_cpu': [
'tensorflow-cpu>=2.3.0, <2.4',
'tensorflow-cpu>=2.4.0rc0, <2.5',
],
'tests': [
'absl-py',
Expand Down

0 comments on commit e200a15

Please sign in to comment.