File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -56,10 +56,10 @@ http_archive(
56
56
57
57
http_archive (
58
58
name = "org_tensorflow" ,
59
- strip_prefix = "tensorflow-2.18.0-rc0 " ,
60
- sha256 = "4c0d58d4516c7cebab91318cb1ed2e5585f772b7ee4f081958df764b4c616422 " ,
59
+ strip_prefix = "tensorflow-2.18.0" ,
60
+ sha256 = "d55768075e7568f02748768f4bc43159370170c18d0da21e9535007c61452d50 " ,
61
61
urls = [
62
- "https://github.com/tensorflow/tensorflow/archive/v2.18.0-rc0 .zip"
62
+ "https://github.com/tensorflow/tensorflow/archive/v2.18.0.zip"
63
63
],
64
64
)
65
65
Original file line number Diff line number Diff line change 41
41
if is_macos; then
42
42
# Only Apple Silicon will be installed with tensorflow-macos.
43
43
if [[ x" $( arch) " == x" arm64" ]]; then
44
- pip install tensorflow==2.18.0rc0
44
+ pip install tensorflow==2.18.0
45
45
else
46
- pip install tensorflow==2.18.0rc0
46
+ pip install tensorflow==2.18.0
47
47
fi
48
48
else
49
- pip install tensorflow==2.18.0rc0
49
+ pip install tensorflow==2.18.0
50
50
fi
51
51
fi
52
52
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.18.0-rc0 '
35
+ project_version = '2.18.0'
36
36
37
37
38
38
class BinaryDistribution (Distribution ):
@@ -74,12 +74,12 @@ def finalize_options(self):
74
74
distclass = BinaryDistribution ,
75
75
install_requires = [
76
76
(
77
- 'tensorflow>=2.18.0rc0 , <2.19' ,
77
+ 'tensorflow>=2.18.0 , <2.19' ,
78
78
),
79
79
],
80
80
extras_require = {
81
81
'tensorflow_cpu' : [
82
- 'tensorflow-cpu>=2.18.0rc0 , <2.19' ,
82
+ 'tensorflow-cpu>=2.18.0 , <2.19' ,
83
83
],
84
84
'tests' : [
85
85
'absl-py' ,
Original file line number Diff line number Diff line change 110
110
]
111
111
112
112
remove_undocumented (__name__ , _allowed_symbols )
113
- __version__ = "2.18.0-rc0 "
113
+ __version__ = "2.18.0"
You can’t perform that action at this time.
0 commit comments