Skip to content

Bump the pip group across 2 directories with 5 updates #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tensorflow/tools/ci_build/release/requirements_common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ flatbuffers ~= 2.0
google_pasta ~= 0.2
h5py ~= 3.1.0 # NOTE: not the latest version due to py3.6
keras_preprocessing ~= 1.1.2
numpy ~= 1.19.5 # NOTE: not the latest version due to py3.6
numpy ~= 1.26.4 # NOTE: not the latest version due to py3.6
opt_einsum ~= 3.3.0
protobuf >= 3.17.1
six ~= 1.16.0
termcolor ~= 1.1.0
typing_extensions ~= 3.10.0.0
wheel ~= 0.36.2
wheel ~= 0.43.0
wrapt ~= 1.12.1

# We need to pin the gast dependency exactly
Expand All @@ -29,6 +29,6 @@ tb-nightly ~= 2.6.0.a
tf-estimator-nightly ~= 2.6.0.dev

# Test dependencies
grpcio ~= 1.38.1
grpcio ~= 1.62.1
portpicker ~= 1.4.0
scipy ~= 1.5.4 # NOTE: not the latest version due to py3.6
scipy ~= 1.12.0 # NOTE: not the latest version due to py3.6
2 changes: 1 addition & 1 deletion tensorflow/tools/ci_build/release/requirements_mac.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r requirements_common.txt

# Dependencies only required for Mac
certifi ~= 2020.12.5
certifi ~= 2024.2.2
4 changes: 2 additions & 2 deletions tensorflow/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
# NOTE: As numpy has releases that break semver guarantees and several other
# deps depend on numpy without an upper bound, we must install numpy before
# everything else.
'numpy ~= 1.19.2',
'numpy >= 1.19.2,< 1.27.0',
# Install other dependencies
'absl-py ~= 0.10',
'astunparse ~= 1.6.3',
Expand Down Expand Up @@ -136,7 +136,7 @@
# Follows the same conventions as `REQUIRED_PACKAGES`
TEST_PACKAGES = [
'portpicker ~= 1.3.1',
'scipy ~= 1.5.2',
'scipy >= 1.5.2,< 1.13.0',
'tblib ~= 1.7.0',
'dill ~= 0.3.2',
]
Expand Down