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.14.0-rc0 " ,
76
- sha256 = "99c6f486d1b361f1dd6de52df27f5d9c69e114b3540607746b967d1bd2ca16d4 " ,
75
+ strip_prefix = "tensorflow-2.14.0" ,
76
+ sha256 = "63418e2ecdac704a6f8aea6f395ccc3677e49b06f839a028e3da9f5115dcd222 " ,
77
77
urls = [
78
- "https://github.com/tensorflow/tensorflow/archive/v2.14.0-rc0 .zip"
78
+ "https://github.com/tensorflow/tensorflow/archive/v2.14.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.9.0
50
50
else
51
- pip install tensorflow==2.14.0rc0
51
+ pip install tensorflow==2.14.0
52
52
fi
53
53
else
54
- pip install tensorflow==2.14.0rc0
54
+ pip install tensorflow==2.14.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.14.0-rc0 '
35
+ project_version = '2.14.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.14.0rc0 , <2.15; platform_machine != "arm64" or'
77
+ 'tensorflow>=2.14.0 , <2.15; platform_machine != "arm64" or'
78
78
' platform_system != "Darwin"'
79
79
),
80
80
(
81
- 'tensorflow-macos>=2.14.0rc0 , <2.15; platform_machine == "arm64" and'
81
+ 'tensorflow-macos>=2.14.0 , <2.15; 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.14.0-rc0 "
113
+ __version__ = "2.14.0"
You can’t perform that action at this time.
0 commit comments