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

Merge branch 'release/0.4.35'

This commit is contained in:
Peter Hawkins 2024-10-22 17:02:22 -04:00
commit 2aeda17829
4 changed files with 8 additions and 5 deletions

@ -10,7 +10,9 @@ 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.
-->
## jax 0.4.35
## jax 0.4.36
## jax 0.4.35 (Oct 22, 2024)
* Breaking Changes
* {func}`jax.numpy.isscalar` now returns True for any array-like object with

@ -770,6 +770,7 @@ class Jax2TfTest(tf_test_util.JaxToTfTestCase):
self.assertLen(jax.tree_util.tree_leaves(m.b), 2)
self.assertLen(jax.tree_util.tree_leaves(m.c), 2)
@unittest.skip("Test fails at head")
def test_issue_10586(self):
class JaxModule(tf.Module):

@ -21,7 +21,7 @@ import os
import pathlib
import subprocess
_version = "0.4.35"
_version = "0.4.36"
# The following line is overwritten by build scripts in distributions &
# releases. Do not modify this manually, or jax/jaxlib build will fail.
_release_version: str | None = None
@ -133,7 +133,7 @@ def _get_cmdclass(pkg_source_path):
__version__ = _get_version_string()
_minimum_jaxlib_version = "0.4.34"
_minimum_jaxlib_version = "0.4.35"
def _version_as_tuple(version_str):
return tuple(int(i) for i in version_str.split(".") if i.isdigit())

@ -19,9 +19,9 @@ from setuptools import setup, find_packages
project_name = 'jax'
_current_jaxlib_version = '0.4.34'
_current_jaxlib_version = '0.4.35'
# The following should be updated after each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.34'
_latest_jaxlib_version_on_pypi = '0.4.35'
_libtpu_version = '0.0.2'
_libtpu_nightly_terminal_version = '0.1.dev20241010+nightly.cleanup'