Skip to content

Commit 6ebfc2a

Browse files
committed
Upgrade TF to 2.13 and expand numpy version range >=1.22
PiperOrigin-RevId: 551340033
1 parent f63b415 commit 6ebfc2a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

RELEASE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
## Bug Fixes and Other Changes
88

99
* Depends on `pyarrow>=10,<11`.
10+
* Depends on `numpy>=1.22.0`.
11+
* Depends on `tensorflow>=2.13.0,<3`.
1012

1113
## Breaking Changes
1214

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ tf_configure(name = "local_config_tf")
4141
# 3. Request the new archive to be mirrored on mirror.bazel.build for more
4242
# reliable downloads.
4343

44-
_TENSORFLOW_GIT_COMMIT = "3e6e3ceeedb0dbf2961051fe22002c98a255a6b8" # tf 2.13.0
45-
_TENSORFLOW_ARCHIVE_SHA256 = "2395cc44ed65d563e9628c7ba457974d941a27033e879acffa08cc19e53fc355"
44+
_TENSORFLOW_GIT_COMMIT = "1cb1a030a62b169d90d34c747ab9b09f332bf905" # tf 2.13.0
45+
_TENSORFLOW_ARCHIVE_SHA256 = "a62eba23ebfcf1d6d2d3241f1629b99df576a9f726c439a97c3acd590e71fe62"
4646

4747
http_archive(
4848
name = "org_tensorflow",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ def select_constraint(default, nightly=None, git_master=None):
7676
install_requires=[
7777
# TODO(b/263060885): Remove the explicit numpy dependency once TF works
7878
# with numpy>=1.24.
79-
'numpy<1.24',
79+
'numpy>=1.22',
8080
'protobuf>=3.20.3,<5',
81-
'tensorflow>=2.12,<3',
81+
'tensorflow>=2.13,<3',
8282
'tensorflow-metadata' + select_constraint(
8383
default='>=1.13.1,<1.14.0',
8484
nightly='>=1.14.0.dev',

0 commit comments

Comments
 (0)