Skip to content

Commit

Permalink
Prepare for v0.4.32 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkinsp committed Sep 11, 2024
1 parent ed849ff commit 1594d2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheel_win_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
JAX_SKIP_SLOW_TESTS: true
PY_COLORS: 1
run: |
python -m pip install --find-links ${{ github.workspace }}\dist jaxlib
python -m pip install -e ${{ github.workspace }}
python -m pip install --no-index --find-links ${{ github.workspace }}\dist jaxlib
echo "JAX_ENABLE_CHECKS=$JAX_ENABLE_CHECKS"
pytest -n auto --tb=short tests examples
2 changes: 1 addition & 1 deletion jax/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def make_release_tree(self, base_dir, files):


__version__ = _get_version_string()
_minimum_jaxlib_version = "0.4.31"
_minimum_jaxlib_version = "0.4.32"

def _version_as_tuple(version_str):
return tuple(int(i) for i in version_str.split(".") if i.isdigit())
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@

project_name = 'jax'

_current_jaxlib_version = '0.4.31'
_current_jaxlib_version = '0.4.32'
# The following should be updated after each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.31'
_libtpu_version = '0.1.dev20240729'
_libtpu_version = '0.1.dev20240911'

def load_version_module(pkg_path):
spec = importlib.util.spec_from_file_location(
Expand Down

0 comments on commit 1594d2f

Please sign in to comment.