Finish jax and jaxlib 0.4.2 release

PiperOrigin-RevId: 495068000
This commit is contained in:
Yash Katariya 2022-12-13 10:50:25 -08:00 committed by jax authors
parent 0fd9edea4e
commit 835d0c979a
3 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,11 @@ Best viewed [here](https://jax.readthedocs.io/en/latest/changelog.html).
Remember to align the itemized text with the first line of an item within a list.
-->
## jax 0.4.1
## jax 0.4.2
## jaxlib 0.4.2
## jax 0.4.1 (Dec 13, 2022)
* Changes
* Support for Python 3.7 has been dropped, in accordance with JAX's
@ -40,7 +44,7 @@ Remember to align the itemized text with the first line of an item within a list
It will be removed in a future release, in accordance with the {ref}`api-compatibility`
policy. It can be replaced with `jnp.sort(a, axis=0)`.
## jaxlib 0.4.1
## jaxlib 0.4.1 (Dec 13, 2022)
* Changes
* Support for Python 3.7 has been dropped, in accordance with JAX's

View File

@ -15,7 +15,7 @@
# This file is included as part of both jax and jaxlib. It is also
# eval()-ed by setup.py, so it should not have any dependencies.
__version__ = "0.4.1"
__version__ = "0.4.2"
_minimum_jaxlib_version = "0.3.22"
def _version_as_tuple(version_str):

View File

@ -21,7 +21,7 @@ from setuptools import setup, find_packages
_current_jaxlib_version = '0.4.1'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.0'
_latest_jaxlib_version_on_pypi = '0.4.1'
_available_cuda_versions = ['11']
_default_cuda_version = '11'
_available_cudnn_versions = ['82', '86']