Skip to content

Commit 04454b6

Browse files
Merge pull request jax-ml#27260 from hawkinsp:postrelease
PiperOrigin-RevId: 738498184
2 parents afdbcd0 + 9d534ad commit 04454b6

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/wheel_win_x64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
JAXLIB_RELEASE: true
3939
run: |
4040
python -m pip install uv~=0.5.30
41-
python -m uv pip install -r build/test-requirements.txt \
41+
python -m uv pip install -r build/test-requirements.txt `
4242
--upgrade numpy==2.0.0 scipy==1.13.1
4343
"C:\\msys64\\;C:\\msys64\\usr\\bin\\;" >> $env:GITHUB_PATH
4444
python.exe build\build.py build --wheels=jaxlib `
@@ -58,7 +58,7 @@ jobs:
5858
JAX_SKIP_SLOW_TESTS: true
5959
PY_COLORS: 1
6060
run: |
61-
python -m uv pip install --find-links ${{ github.workspace }}\dist jaxlib \
61+
python -m uv pip install --find-links ${{ github.workspace }}\dist jaxlib `
6262
-e ${{ github.workspace }}
6363
echo "JAX_ENABLE_CHECKS=$JAX_ENABLE_CHECKS"
6464
pytest -n auto --tb=short tests examples

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.
1616

1717
## Unreleased
1818

19+
## jax 0.5.3 (Mar 19, 2025)
20+
1921
* New Features
2022

2123
* Added a `allow_negative_indices` option to {func}`jax.lax.dynamic_slice`,

jax/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import pathlib
2222
import subprocess
2323

24-
_version = "0.5.3"
24+
_version = "0.5.4"
2525
# The following line is overwritten by build scripts in distributions &
2626
# releases. Do not modify this manually, or jax/jaxlib build will fail.
2727
_release_version: str | None = None
@@ -146,7 +146,7 @@ def make_release_tree(self, base_dir, files):
146146

147147

148148
__version__ = _get_version_string()
149-
_minimum_jaxlib_version = "0.5.1"
149+
_minimum_jaxlib_version = "0.5.3"
150150

151151
def _version_as_tuple(version_str):
152152
return tuple(int(i) for i in version_str.split(".") if i.isdigit())

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
project_name = 'jax'
2121

22-
_current_jaxlib_version = '0.5.1'
22+
_current_jaxlib_version = '0.5.3'
2323
# The following should be updated after each new jaxlib release.
24-
_latest_jaxlib_version_on_pypi = '0.5.1'
24+
_latest_jaxlib_version_on_pypi = '0.5.3'
2525

26-
_libtpu_version = '0.0.10.*'
26+
_libtpu_version = '0.0.11.*'
2727

2828
def load_version_module(pkg_path):
2929
spec = importlib.util.spec_from_file_location(

0 commit comments

Comments
 (0)