File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ Remember to align the itemized text with the first line of an item within a list
1010When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.md.
1111-->
1212
13- ## jax 0.4.38
13+ ## Unreleased
14+
15+ ## jax 0.4.38 (Dec 17, 2024)
1416
1517* Changes:
1618 * ` jax.tree.flatten_with_path ` and ` jax.tree.map_with_path ` are added
Original file line number Diff line number Diff line change @@ -613,7 +613,7 @@ def flatten_one_level_with_keys(
613613 tree : Any ,
614614) -> tuple [Iterable [KeyLeafPair ], Hashable ]:
615615 """Flatten the given pytree node by one level, with keys."""
616- out = default_registry .flatten_one_level_with_keys (tree )
616+ out = default_registry .flatten_one_level_with_keys (tree ) # type: ignore
617617 if out is None :
618618 raise ValueError (f"can't tree-flatten type: { type (tree )} " )
619619 else :
Original file line number Diff line number Diff line change 2121import pathlib
2222import subprocess
2323
24- _version = "0.4.38 "
24+ _version = "0.4.39 "
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
Original file line number Diff line number Diff line change 2121
2222_current_jaxlib_version = '0.4.38'
2323# The following should be updated after each new jaxlib release.
24- _latest_jaxlib_version_on_pypi = '0.4.36 '
24+ _latest_jaxlib_version_on_pypi = '0.4.38 '
2525
2626_libtpu_version = '0.0.7'
2727_libtpu_nightly_terminal_version = '0.1.dev20241010+nightly.cleanup'
You can’t perform that action at this time.
0 commit comments