Skip to content

Commit e7f9473

Browse files
Update version
1 parent 272d08b commit e7f9473

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ http_archive(
5656

5757
http_archive(
5858
name = "org_tensorflow",
59-
strip_prefix = "tensorflow-9d2929b69fdddc1e8d5de70a706556b15d8ed37b",
60-
sha256 = "a4f965340ea11d49c8897df59a24822c2b367e4cebb5908b7ca8c3b607097af9",
59+
strip_prefix = "tensorflow-2.17.0-rc0",
60+
sha256 = "5f1821b0119c723bd422af0977bb5855bf49e128537a3f490117578126fa1ab1",
6161
urls = [
62-
"https://github.com/tensorflow/tensorflow/archive/9d2929b69fdddc1e8d5de70a706556b15d8ed37b.zip"
62+
"https://github.com/tensorflow/tensorflow/archive/v2.17.0-rc0.zip"
6363
],
6464
)
6565

oss_scripts/configure.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ else
4343
if [[ x"$(arch)" == x"arm64" ]]; then
4444
pip install tensorflow-macos==2.16.1
4545
else
46-
pip install tensorflow==2.16.1
46+
pip install tensorflow==2.17.0rc0
4747
fi
4848
else
49-
pip install tensorflow==2.16.1
49+
pip install tensorflow==2.17.0rc0
5050
fi
5151
fi
5252

5353
# Copy the current bazelversion of TF.
54-
curl https://raw.githubusercontent.com/tensorflow/tensorflow/master/.bazelversion -o .bazelversion
54+
curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.17/.bazelversion -o .bazelversion
5555

5656
# Copy the building configuration of TF.
57-
curl https://raw.githubusercontent.com/tensorflow/tensorflow/master/.bazelrc -o .bazelrc
57+
curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.17/.bazelrc -o .bazelrc
5858
# This line breaks Windows builds, so we remove it.
5959
sed -i -e 's/build --noincompatible_remove_legacy_whole_archive//' .bazelrc
6060

oss_scripts/pip_package/setup.py

Lines changed: 1 addition & 1 deletion
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.16.1'
35+
project_version = '2.17.0-rc0'
3636

3737

3838
class BinaryDistribution(Distribution):

tensorflow_text/__init__.py

Lines changed: 1 addition & 1 deletion
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.17.0-rc0"

0 commit comments

Comments
 (0)