File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ http_archive(
52
52
53
53
http_archive (
54
54
name = "org_tensorflow" ,
55
- strip_prefix = "tensorflow-2.6.0-rc0 " ,
56
- sha256 = "f15b5726a3b95c2d2530ef3faacae7d4c58bbb5a2a38795e7b01c2efcb1bf843 " ,
55
+ strip_prefix = "tensorflow-2.6.0" ,
56
+ sha256 = "40d3203ab5f246d83bae328288a24209a2b85794f1b3e2cd0329458d8e7c1985 " ,
57
57
urls = [
58
- "https://github.com/tensorflow/tensorflow/archive/v2.6.0-rc0 .zip"
58
+ "https://github.com/tensorflow/tensorflow/archive/v2.6.0.zip"
59
59
],
60
60
)
61
61
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ if [[ $(pip show tensorflow) == *tensorflow* ]] || [[ $(pip show tf-nightly) ==
41
41
echo ' Using installed tensorflow.'
42
42
else
43
43
echo ' Installing tensorflow.'
44
- pip install tensorflow==2.6.0rc0
44
+ pip install tensorflow==2.6.0
45
45
fi
46
46
47
47
if is_windows; then
Original file line number Diff line number Diff line change 32
32
from setuptools .dist import Distribution
33
33
34
34
project_name = 'tensorflow-text'
35
- project_version = '2.6.0-rc0 '
35
+ project_version = '2.6.0'
36
36
37
37
38
38
class BinaryDistribution (Distribution ):
@@ -73,7 +73,7 @@ def finalize_options(self):
73
73
cmdclass = {'install' : InstallPlatlib },
74
74
distclass = BinaryDistribution ,
75
75
install_requires = [
76
- 'tensorflow>=2.6.0rc0 , <2.7' ,
76
+ 'tensorflow>=2.6.0 , <2.7' ,
77
77
'tensorflow_hub>=0.8.0' ,
78
78
],
79
79
extras_require = {
Original file line number Diff line number Diff line change 76
76
]
77
77
78
78
remove_undocumented (__name__ , _allowed_symbols )
79
- __version__ = "2.6.0-rc0 "
79
+ __version__ = "2.6.0"
You can’t perform that action at this time.
0 commit comments