From f0b779f08ebebda8f0a82c7795feb6a42928e541 Mon Sep 17 00:00:00 2001 From: Yu Li Date: Fri, 27 Feb 2026 21:52:49 +0000 Subject: [PATCH 1/2] Preparing for the v0.1.6 release --- pathwaysutils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pathwaysutils/__init__.py b/pathwaysutils/__init__.py index 62506f6..4489094 100644 --- a/pathwaysutils/__init__.py +++ b/pathwaysutils/__init__.py @@ -21,4 +21,4 @@ del _initialize # When changing this, also update the CHANGELOG.md. -__version__: str = "v0.1.5" +__version__ = "v0.1.6" From ed4fe51c02e93ccbd7f2b923c53462345c8cdd40 Mon Sep 17 00:00:00 2001 From: Yu Li Date: Fri, 27 Mar 2026 18:20:55 +0000 Subject: [PATCH 2/2] Remove JAX 0.7.2 from the unittest matrix and bump the min requirement to 0.8.0 --- .github/workflows/test.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9224ce9..9e3ff36 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: python-version: ['3.11', '3.12', '3.13', '3.14'] - jax-version: ['0.7.2', '0.8.0', '0.8.1', '0.8.2', '0.9.0', 'nightly'] + jax-version: ['0.8.0', '0.8.1', '0.8.2', '0.9.0', 'nightly'] runs-on: ubuntu-latest timeout-minutes: 30 diff --git a/pyproject.toml b/pyproject.toml index 4590269..cf5363a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ keywords = [] dependencies = [ "absl-py", "fastapi", - "jax>=0.7.2", + "jax>=0.8.0", "orbax-checkpoint", "uvicorn", "requests",