Skip to content

Commit 59a57b7

Browse files
ChromeHeartsOrbax Authors
authored andcommitted
Bump minimum JAX version to v0.6.0
PiperOrigin-RevId: 805898990
1 parent 109dcaf commit 59a57b7

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
jax-version: ["newest"]
3535
include:
3636
- python-version: "3.10"
37-
jax-version: "0.5.0" # keep in sync with minimum version in checkpoint/pyproject.toml
37+
jax-version: "0.6.0" # keep in sync with minimum version in checkpoint/pyproject.toml
3838
# TODO(b/401258175) Re-enable once JAX nightlies are fixed.
3939
# - python-version: "3.13"
4040
# jax-version: "nightly"

checkpoint/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.25] - 2025-09-10
11+
1012
### Changed
1113

1214
- Move temporary path detection into `TemporaryPath` class. This class serves
@@ -17,6 +19,7 @@ paths.
1719
- Remove the `jax_pmap_no_rank_reduction=False` code path for
1820
`utils.fully_replicated_host_local_array_to_global_array`.
1921
`jax_pmap_no_rank_reduction=True` by default in JAX.
22+
- Changed to minimum jax version requirement to v0.6.0
2023

2124
## [0.11.24] - 2025-08-28
2225

checkpoint/orbax/checkpoint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# A new PyPI release will be pushed everytime `__version__` is increased.
1818
# Also modify version and date in CHANGELOG.
1919
# LINT.IfChange
20-
__version__ = '0.11.24'
20+
__version__ = '0.11.25'
2121
# LINT.ThenChange(//depot//orbax/checkpoint/CHANGELOG.md)
2222

2323

checkpoint/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
'etils[epath,epy]',
2727
'typing_extensions',
2828
'msgpack',
29-
'jax >= 0.5.0',
29+
'jax >= 0.6.0',
3030
'numpy',
3131
'pyyaml',
3232
'tensorstore >= 0.1.71',

0 commit comments

Comments
 (0)