Skip to content

Commit

Permalink
Fix pins for 2.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jayfurmanek committed Jul 20, 2023
1 parent b815da7 commit c953506
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions tensorflow/tools/ci_build/install/install_pip_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ pip3 install --upgrade gast
pip3 install --upgrade termcolor

# Keras
pip3 install keras-nightly --no-deps
pip3 install keras==2.13.1 --no-deps
pip3 install --upgrade h5py==3.1.0

# Estimator
pip3 install tf-estimator-nightly --no-deps
pip3 install tensorflow-estimator==2.13.0 --no-deps

# Tensorboard
pip3 install tb-nightly --no-deps
pip3 install tensorboard==2.13.0 --no-deps

# Argparse
pip3 install --upgrade argparse
Expand Down
6 changes: 3 additions & 3 deletions tensorflow/tools/ci_build/release/requirements_common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ gast == 0.4.0
# Note that here we want the latest version that matches TF major.minor version
# Note that we must use nightly here as these are used in nightly jobs
# For release jobs, we will pin these on the release branch
keras-nightly ~= 2.13.0.dev
tb-nightly ~= 2.13.0.a
tf-estimator-nightly ~= 2.13.0.dev
keras == 2.13.0
tensorboard == 2.13.0
tensorflow-estimator == 2.13.0

# Test dependencies
grpcio ~= 1.49.1 # Earliest version for Python 3.11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gast == 0.4.0
# For release jobs, we will pin these on the release branch
# Note that the CACHEBUSTER variable, set in the CI builds, will force these to
# be the latest version.
keras == 2.13.0
keras == 2.13.1
tensorboard == 2.13.0
tensorflow-estimator == 2.13.0
# Test dependencies
Expand Down

0 comments on commit c953506

Please sign in to comment.