Skip to content

Commit 3f49a33

Browse files
committed
Update setup.py, requirements.in and generate lock files
1 parent 716b34d commit 3f49a33

File tree

8 files changed

+448
-294
lines changed

8 files changed

+448
-294
lines changed

ci/official/requirements_updater/requirements.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ auditwheel >= 6.1.0
1818
# Note that here we want the latest version that matches TF major.minor version
1919
# Note that we must use nightly here as these are used in nightly jobs
2020
# For release jobs, we will pin these on the release branch
21-
keras-nightly ~= 3.0.0.dev
22-
tb-nightly ~= 2.19.0.a
21+
keras ~= 3.5.0
22+
tensorboard ~= 2.19.0
2323
# Test dependencies
2424
grpcio >= 1.24.3, < 2.0
2525
portpicker == 1.6.0

requirements_lock_3_10.txt

+111-72
Large diffs are not rendered by default.

requirements_lock_3_11.txt

+108-71
Large diffs are not rendered by default.

requirements_lock_3_12.txt

+111-72
Large diffs are not rendered by default.

requirements_lock_3_9.txt

+111-72
Large diffs are not rendered by default.

tensorflow/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -1747,8 +1747,8 @@ py_library(
17471747
"//tensorflow/lite/python:lite",
17481748
"//tensorflow/lite/python/authoring",
17491749
"//tensorflow/python:no_contrib",
1750-
"@pypi_keras_nightly//:pkg",
1751-
"@pypi_tb_nightly//:pkg",
1750+
"@pypi_keras//:pkg",
1751+
"@pypi_tensorboard//:pkg",
17521752
],
17531753
)
17541754
# copybara:comment_end

tensorflow/python/summary/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ tf_py_strict_test(
122122
"//tensorflow/python/ops:summary_ops_v2",
123123
"//tensorflow/python/platform:client_testlib",
124124
"//tensorflow/python/training:training_util",
125-
"@pypi_tb_nightly//:pkg",
125+
"@pypi_tensorboard//:pkg",
126126
],
127127
)
128128

tensorflow/tools/pip_package/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ def standard_or_nightly(standard, nightly):
109109
# dependencies on the release branch is updated to the stable releases (RC
110110
# or final). For example, 'keras-nightly ~= 2.14.0.dev' will be replaced by
111111
# 'keras >= 2.14.0rc0, < 2.15' on the release branch after the branch cut.
112-
'tb-nightly ~= 2.19.0.a',
113-
'keras-nightly >= 3.6.0.dev',
112+
'tensorboard ~= 2.19.0',
113+
'keras >= 3.5.0',
114114
'numpy >= 1.26.0, < 2.2.0',
115115
'h5py >= 3.11.0',
116116
'ml_dtypes >= 0.5.1, < 1.0.0',

0 commit comments

Comments
 (0)