Skip to content

Commit 02587f8

Browse files
committed
Update version
1 parent 9464891 commit 02587f8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ http_archive(
5252

5353
http_archive(
5454
name = "org_tensorflow",
55-
strip_prefix = "tensorflow-2.6.0-rc0",
56-
sha256 = "f15b5726a3b95c2d2530ef3faacae7d4c58bbb5a2a38795e7b01c2efcb1bf843",
55+
strip_prefix = "tensorflow-2.6.0",
56+
sha256 = "40d3203ab5f246d83bae328288a24209a2b85794f1b3e2cd0329458d8e7c1985",
5757
urls = [
58-
"https://github.com/tensorflow/tensorflow/archive/v2.6.0-rc0.zip"
58+
"https://github.com/tensorflow/tensorflow/archive/v2.6.0.zip"
5959
],
6060
)
6161

oss_scripts/configure.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
4141
echo 'Using installed tensorflow.'
4242
else
4343
echo 'Installing tensorflow.'
44-
pip install tensorflow==2.6.0rc0
44+
pip install tensorflow==2.6.0
4545
fi
4646

4747
if is_windows; then

oss_scripts/pip_package/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools.dist import Distribution
3333

3434
project_name = 'tensorflow-text'
35-
project_version = '2.6.0-rc0'
35+
project_version = '2.6.0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -73,7 +73,7 @@ def finalize_options(self):
7373
cmdclass={'install': InstallPlatlib},
7474
distclass=BinaryDistribution,
7575
install_requires=[
76-
'tensorflow>=2.6.0rc0, <2.7',
76+
'tensorflow>=2.6.0, <2.7',
7777
'tensorflow_hub>=0.8.0',
7878
],
7979
extras_require={

tensorflow_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@
7676
]
7777

7878
remove_undocumented(__name__, _allowed_symbols)
79-
__version__ = "2.6.0-rc0"
79+
__version__ = "2.6.0"

0 commit comments

Comments
 (0)