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 " ,
56
- sha256 = "40d3203ab5f246d83bae328288a24209a2b85794f1b3e2cd0329458d8e7c1985 " ,
55
+ strip_prefix = "tensorflow-2.7.0-rc0 " ,
56
+ sha256 = "6b31d38c3a408bebe746dfecbc073eb68e6de38046fde40067a4eef9abddf25c " ,
57
57
urls = [
58
- "https://github.com/tensorflow/tensorflow/archive/v2.6.0 .zip"
58
+ "https://github.com/tensorflow/tensorflow/archive/v2.7.0-rc0 .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.0
44
+ pip install tensorflow==2.7.0rc0
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 '
35
+ project_version = '2.7.0-rc0 '
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.0 , <2.7 ' ,
76
+ 'tensorflow>=2.7.0rc0 , <2.8 ' ,
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 "
79
+ __version__ = "2.7.0-rc0 "
You can’t perform that action at this time.
0 commit comments