Skip to content

Bump the python group with 5 updates #21445

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions requirements-jax-cuda.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Tensorflow cpu-only version (needed for testing).
tensorflow-cpu~=2.18.1
tensorflow-cpu~=2.19.0
tf2onnx

# Torch cpu-only version (needed for testing).
--extra-index-url https://download.pytorch.org/whl/cpu
torch==2.6.0
torch==2.7.1+cpu

# Jax with cuda support.
--find-links https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
Expand Down
4 changes: 2 additions & 2 deletions requirements-tensorflow-cuda.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Tensorflow with cuda support.
tensorflow[and-cuda]~=2.18.1
tensorflow[and-cuda]~=2.19.0
tf2onnx

# Torch cpu-only version (needed for testing).
--extra-index-url https://download.pytorch.org/whl/cpu
torch==2.6.0
torch==2.7.1+cpu

# Jax cpu-only version (needed for testing).
jax[cpu]
Expand Down
6 changes: 3 additions & 3 deletions requirements-torch-cuda.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Tensorflow cpu-only version (needed for testing).
tensorflow-cpu~=2.18.1
tensorflow-cpu~=2.19.0
tf2onnx

# Torch with cuda support.
# - torch is pinned to a version that is compatible with torch-xla
# - torch-xla is pinned to a version that supports GPU (2.6 doesn't)
--extra-index-url https://download.pytorch.org/whl/cu121
torch==2.6.0
torch-xla==2.6.0;sys_platform != 'darwin'
torch==2.7.1+cpu
torch-xla==2.7.0;sys_platform != 'darwin'

# Jax cpu-only version (needed for testing).
jax[cpu]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Tensorflow.
tensorflow-cpu~=2.18.1;sys_platform != 'darwin'
tensorflow~=2.18.1;sys_platform == 'darwin'
tensorflow-cpu~=2.19.0;sys_platform != 'darwin'
tensorflow~=2.19.0;sys_platform == 'darwin'
tf_keras
tf2onnx

# Torch.
--extra-index-url https://download.pytorch.org/whl/cpu
torch==2.6.0;sys_platform != 'darwin'
torch==2.7.1+cpu;sys_platform != 'darwin'
torch==2.6.0;sys_platform == 'darwin'
torch-xla==2.6.0;sys_platform != 'darwin'
torch-xla==2.7.0;sys_platform != 'darwin'

# Jax.
# Pinned to 0.5.0 on CPU. JAX 0.5.1 requires Tensorflow 2.19 for saved_model_test.
Expand Down
Loading