Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
gregbillock committed May 11, 2020
1 parent 72be3dd commit c5701eb
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 @@ -94,10 +94,10 @@ http_archive(

http_archive(
name = "org_tensorflow",
strip_prefix = "tensorflow-2.2.0-rc2",
sha256 = "ae8e81e2d2e27ab9d0e8f1ec8c24f990c0c507088957c5f4fd1558c21f378f65",
strip_prefix = "tensorflow-2.2.0",
sha256 = "fd3e6580cfe2035aa80d569b76bba5f33119362907f3d77039b6bedf76172712",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.2.0-rc2.zip"
"https://github.com/tensorflow/tensorflow/archive/v2.2.0.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.2.0rc2
pip install tensorflow==2.2.0
fi

write_to_bazelrc "build:manylinux2010 --crosstool_top=@org_tensorflow//third_party/toolchains/preconfig/ubuntu16.04/gcc7_manylinux2010-nvcc-cuda10.0: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.2.0-rc2'
project_version = '2.2.0'


class BinaryDistribution(Distribution):
Expand Down Expand Up @@ -73,11 +73,11 @@ def finalize_options(self):
cmdclass={'install': InstallPlatlib},
distclass=BinaryDistribution,
install_requires=[
'tensorflow>=2.2.0rc0, <2.3',
'tensorflow>=2.2.0, <2.3',
],
extras_require={
'tensorflow_gpu': [
'tensorflow-gpu>=2.2.0rc0, <2.3',
'tensorflow-gpu>=2.2.0, <2.3',
],
'tests': [
'absl-py',
Expand Down

0 comments on commit c5701eb

Please sign in to comment.