Skip to content

Commit ca0e7dd

Browse files
committed
Pin some deps for 2.19
1 parent 87ea91e commit ca0e7dd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tensorflow/tools/tf_sig_build_dockerfiles/devel.requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ gast == 0.4.0
3030
# For release jobs, we will pin these on the release branch
3131
# Note that the CACHEBUSTER variable, set in the CI builds, will force these to
3232
# be the latest version.
33-
keras-nightly >= 3.2.0.dev
34-
tb-nightly ~= 2.17.0.a
33+
keras >= 3.5.0.dev
34+
tensorboard ~= 2.19.0
3535
# Test dependencies
3636
grpcio ~= 1.59.0 # Earliest version for Python 3.12
3737
portpicker ~= 1.6.0

tensorflow/tools/tf_sig_build_dockerfiles/setup.build-python_ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ python3 --version
8383
echo "Install Requirements"
8484
# Disable the cache dir to save image space, and install packages
8585
python3 -m pip install --no-cache-dir -r $REQUIREMENTS -U
86-
python3 -m pip install --no-cache-dir --no-deps tf-keras-nightly
86+
python3 -m pip install --no-cache-dir --no-deps tf-keras~=2.19.0

tensorflow/tools/tf_sig_build_dockerfiles/setup.python.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ python3 -m pip install -U setuptools
9191

9292
if [[ $3 ]]; then
9393
echo "Runtime mode"
94-
python3 -m pip install --no-cache-dir --no-deps tf-keras-nightly
94+
python3 -m pip install --no-cache-dir --no-deps tf-keras~=2.19.0
9595
else
9696
echo "Install Requirements"
9797
# Disable the cache dir to save image space, and install packages
9898
python3 -m pip install --no-cache-dir -r $REQUIREMENTS -U
99-
python3 -m pip install --no-cache-dir --no-deps tf-keras-nightly
99+
python3 -m pip install --no-cache-dir --no-deps tf-keras~=2.19.0
100100
fi

0 commit comments

Comments
 (0)