File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
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.5.0-rc0 " ,
56
- sha256 = "73883308bb0aacd88e0c6423cc9e8f4b654c4af9923c860a3de72b1627652cc7 " ,
55
+ strip_prefix = "tensorflow-2.5.0" ,
56
+ sha256 = "e3d0ee227cc19bd0fa34a4539c8a540b40f937e561b4580d4bbb7f0e31c6a713 " ,
57
57
urls = [
58
- "https://github.com/tensorflow/tensorflow/archive/v2.5.0-rc0 .zip"
58
+ "https://github.com/tensorflow/tensorflow/archive/v2.5.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.5.0rc0
44
+ pip install tensorflow==2.5.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.5.0-rc0 '
35
+ project_version = '2.5.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.5.0rc0 , <2.6' ,
76
+ 'tensorflow>=2.5.0 , <2.6' ,
77
77
'tensorflow_hub>=0.8.0' ,
78
78
],
79
79
extras_require = {
You can’t perform that action at this time.
0 commit comments