From 8c78afd4061c3b95d0b0587820d037af2f049e84 Mon Sep 17 00:00:00 2001 From: Claudio Fantacci Date: Mon, 1 Jun 2026 09:23:55 -0700 Subject: [PATCH] Update supported Python versions following Jax PiperOrigin-RevId: 924750260 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49a4108..f1e02fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.11", "3.12", "3.13"] os: [ubuntu-latest] steps: diff --git a/pyproject.toml b/pyproject.toml index 19d60ad..7f29ec7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] description = 'PIX is an image processing library in JAX, for JAX.' readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.8" +requires-python = ">=3.11" authors = [ {name = "Google DeepMind", email = "pix-dev@google.com"}, ]