File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ http_archive(
72
72
name = "org_tensorflow" ,
73
73
patch_args = ["-p1" ],
74
74
patches = ["//third_party/tensorflow:tf.patch" ],
75
- strip_prefix = "tensorflow-2.15.0-rc0 " ,
76
- sha256 = "45b722efebb4355159eac54f6520675c42ee7c3c21670abf0a371e66210bf8bd " ,
75
+ strip_prefix = "tensorflow-2.15.0" ,
76
+ sha256 = "f771db8d96ca13c72f73c85c9cfb6f5358e2de3dd62a97a9ae4b672fe4c6d094 " ,
77
77
urls = [
78
- "https://github.com/tensorflow/tensorflow/archive/v2.15.0-rc0 .zip"
78
+ "https://github.com/tensorflow/tensorflow/archive/v2.15.0.zip"
79
79
],
80
80
)
81
81
Original file line number Diff line number Diff line change 48
48
if [[ x" $( arch) " == x" arm64" ]]; then
49
49
pip install tensorflow-macos==2.13.0
50
50
else
51
- pip install tensorflow==2.15.0rc0
51
+ pip install tensorflow==2.15.0
52
52
fi
53
53
else
54
- pip install tensorflow==2.15.0rc0
54
+ pip install tensorflow==2.15.0
55
55
fi
56
56
fi
57
57
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.15.0-rc0 '
35
+ project_version = '2.15.0'
36
36
37
37
38
38
class BinaryDistribution (Distribution ):
@@ -74,11 +74,11 @@ def finalize_options(self):
74
74
distclass = BinaryDistribution ,
75
75
install_requires = [
76
76
(
77
- 'tensorflow>=2.15.0rc0 , <2.16; platform_machine != "arm64" or'
77
+ 'tensorflow>=2.15.0 , <2.16; platform_machine != "arm64" or'
78
78
' platform_system != "Darwin"'
79
79
),
80
80
(
81
- 'tensorflow-macos>=2.15.0rc0 , <2.16; platform_machine == "arm64" and'
81
+ 'tensorflow-macos>=2.15.0 , <2.16; platform_machine == "arm64" and'
82
82
' platform_system == "Darwin"'
83
83
),
84
84
'tensorflow_hub>=0.13.0' ,
Original file line number Diff line number Diff line change 110
110
]
111
111
112
112
remove_undocumented (__name__ , _allowed_symbols )
113
- __version__ = "2.15.0-rc0 "
113
+ __version__ = "2.15.0"
You can’t perform that action at this time.
0 commit comments