Skip to content

Commit 23e82b4

Browse files
committedFeb 26, 2024
Update version
1 parent daf770b commit 23e82b4

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed
 

‎WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ http_archive(
5858
name = "org_tensorflow",
5959
patch_args = ["-p1"],
6060
patches = ["//third_party/tensorflow:tf.patch"],
61-
strip_prefix = "tensorflow-d17c801006947b240ec4b8caf232c39b6a24718a",
62-
sha256 = "1a32ed7b5ea090db114008ea382c1e1beda622ffd4c62582f2f906cb10ee6290",
61+
strip_prefix = "tensorflow-2.16.0-rc0",
62+
sha256 = "64b885703422a93b0ed3112d93b6070dab9a94bcdd88755b2dc83bb9a8d102b5",
6363
urls = [
64-
"https://github.com/tensorflow/tensorflow/archive/d17c801006947b240ec4b8caf232c39b6a24718a.zip"
64+
"https://github.com/tensorflow/tensorflow/archive/v2.16.0-rc0.zip"
6565
],
6666
)
6767

‎oss_scripts/configure.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ else
4848
if [[ x"$(arch)" == x"arm64" ]]; then
4949
pip install tensorflow-macos==2.13.0
5050
else
51-
pip install tensorflow==2.13.0
51+
pip install tensorflow==2.16.0rc0
5252
fi
5353
else
54-
pip install tensorflow==2.13.0
54+
pip install tensorflow==2.16.0rc0
5555
fi
5656
fi
5757

@@ -61,10 +61,10 @@ if is_windows; then
6161
fi
6262

6363
# Copy the current bazelversion of TF.
64-
curl https://raw.githubusercontent.com/tensorflow/tensorflow/master/.bazelversion -o .bazelversion
64+
curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.16/.bazelversion -o .bazelversion
6565

6666
# Copy the building configuration of TF.
67-
curl https://raw.githubusercontent.com/tensorflow/tensorflow/master/.bazelrc -o .bazelrc
67+
curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.16/.bazelrc -o .bazelrc
6868
# This line breaks Windows builds, so we remove it.
6969
sed -i -e 's/build --noincompatible_remove_legacy_whole_archive//' .bazelrc
7070

‎oss_scripts/pip_package/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools.dist import Distribution
3333

3434
project_name = 'tensorflow-text'
35-
project_version = '2.13.0'
35+
project_version = '2.16.0-rc0'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -74,11 +74,11 @@ def finalize_options(self):
7474
distclass=BinaryDistribution,
7575
install_requires=[
7676
(
77-
'tensorflow>=2.15.0, <2.16; platform_machine != "arm64" or'
77+
'tensorflow>=2.16.0rc0, <2.17; platform_machine != "arm64" or'
7878
' platform_system != "Darwin"'
7979
),
8080
(
81-
'tensorflow-macos>=2.15.0, <2.16; platform_machine == "arm64" and'
81+
'tensorflow-macos>=2.16.0rc0, <2.17; platform_machine == "arm64" and'
8282
' platform_system == "Darwin"'
8383
),
8484
],

‎tensorflow_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@
110110
]
111111

112112
remove_undocumented(__name__, _allowed_symbols)
113-
__version__ = "2.13.0"
113+
__version__ = "2.16.0-rc0"

0 commit comments

Comments
 (0)
Please sign in to comment.