Skip to content

Commit 5d4de83

Browse files
committed
Merge branch 'release/0.5.3' into main
2 parents 84ec21e + c8032a9 commit 5d4de83

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Remember to align the itemized text with the first line of an item within a list
1414
When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.md.
1515
-->
1616

17-
## Unreleased
17+
## jax 0.5.3
1818

1919
* New Features
2020

jax/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 2 additions & 2 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.
2424
_latest_jaxlib_version_on_pypi = '0.5.1'
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)