1
0
mirror of https://github.com/ROCm/jax.git synced 2025-04-19 21:36:05 +00:00

JAX release v0.5.3

This commit is contained in:
Peter Hawkins 2025-03-18 21:38:14 -04:00
parent 8c7a55ea82
commit ed43119a86
3 changed files with 4 additions and 4 deletions

@ -14,7 +14,7 @@ Remember to align the itemized text with the first line of an item within a list
When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.md.
-->
## Unreleased
## jax 0.5.3
* New Features

@ -146,7 +146,7 @@ def _get_cmdclass(pkg_source_path):
__version__ = _get_version_string()
_minimum_jaxlib_version = "0.5.1"
_minimum_jaxlib_version = "0.5.3"
def _version_as_tuple(version_str):
return tuple(int(i) for i in version_str.split(".") if i.isdigit())

@ -19,11 +19,11 @@ from setuptools import setup, find_packages
project_name = 'jax'
_current_jaxlib_version = '0.5.1'
_current_jaxlib_version = '0.5.3'
# The following should be updated after each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.5.1'
_libtpu_version = '0.0.10.*'
_libtpu_version = '0.0.11.*'
def load_version_module(pkg_path):
spec = importlib.util.spec_from_file_location(