Skip to content

Commit 0b2ba5e

Browse files
authored
Merge pull request #1387 from rtg0795/2.19
Update Version for 2.19.0-rc0
2 parents bae5833 + 2cc1505 commit 0b2ba5e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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-40998f44c0c500ce0f6e3b1658dfbc54f838a82a",
60-
sha256 = "5a5bc4599964c71277dcac0d687435291e5810d2ac2f6283cc96736febf73aaf",
59+
strip_prefix = "tensorflow-2.19.0-rc0",
60+
sha256 = "cc6ca2e1cb326b2b85329a7480813aa69be901f512ba7a08fca852e8eb0ca8f8",
6161
urls = [
62-
"https://github.com/tensorflow/tensorflow/archive/40998f44c0c500ce0f6e3b1658dfbc54f838a82a.zip"
62+
"https://github.com/tensorflow/tensorflow/archive/v2.19.0-rc0.zip"
6363
],
6464
)
6565

oss_scripts/configure.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ else
4141
if [[ "$IS_NIGHTLY" == "nightly" ]]; then
4242
pip install tf-nightly
4343
else
44-
pip install tensorflow==2.18.0
44+
pip install tensorflow==2.19.0-rc0
4545
fi
4646
fi
4747

4848
# Copy the current bazelversion of TF.
49-
curl https://raw.githubusercontent.com/tensorflow/tensorflow/master/.bazelversion -o .bazelversion
49+
curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.19/.bazelversion -o .bazelversion
5050

5151
# Copy the building configuration of TF.
52-
curl https://raw.githubusercontent.com/tensorflow/tensorflow/master/.bazelrc -o .bazelrc
52+
curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.19/.bazelrc -o .bazelrc
5353
# This line breaks Windows builds, so we remove it.
5454
sed -i -e 's/build --noincompatible_remove_legacy_whole_archive//' .bazelrc
5555

oss_scripts/pip_package/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
from setuptools.dist import Distribution
4747

4848
project_name = 'tensorflow-text'
49-
project_version = '2.18.0'
49+
project_version = '2.19.0-rc0'
5050

5151

5252
class BinaryDistribution(Distribution):
@@ -88,12 +88,12 @@ def finalize_options(self):
8888
distclass=BinaryDistribution,
8989
install_requires=[
9090
(
91-
'tensorflow>=2.18.0, <2.19',
91+
'tensorflow>=2.19.0rc0, <2.20',
9292
),
9393
],
9494
extras_require={
9595
'tensorflow_cpu': [
96-
'tensorflow-cpu>=2.18.0, <2.19',
96+
'tensorflow-cpu>=2.19.0rc0, <2.20',
9797
],
9898
'tests': [
9999
'absl-py',

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.19.0-rc0"

0 commit comments

Comments
 (0)