From 7346c913991a43c9260ce594d15bcd977d1ac3a9 Mon Sep 17 00:00:00 2001 From: Matan Ben-Yosef Date: Tue, 19 May 2026 11:09:14 +0100 Subject: [PATCH] Test CI against Python 3.13 and 3.14 Update the matrix and single-version jobs to use current releases while keeping 3.9 as the minimum supported version. --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/publish.yml | 2 +- pyproject.toml | 2 ++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 693a5d2..96d9be1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - python-version: ["3.9", "3.11", "3.12"] + python-version: ["3.9", "3.13", "3.14"] steps: - uses: actions/checkout@v4 @@ -61,7 +61,7 @@ jobs: # Long-running tests (subprocess E2E, perf smoke, build-hook) only need # to pass on one cell — they exercise behavior that's OS- and version- # independent. - name: slow tests (py3.12 / ubuntu) + name: slow tests (py3.14 / ubuntu) runs-on: ubuntu-latest needs: test steps: @@ -71,7 +71,7 @@ jobs: uses: astral-sh/setup-uv@v4 - name: Set up Python - run: uv python install 3.12 + run: uv python install 3.14 - name: Install dependencies run: uv sync --dev @@ -93,7 +93,7 @@ jobs: uses: astral-sh/setup-uv@v4 - name: Set up Python - run: uv python install 3.12 + run: uv python install 3.14 - name: Build package run: uv build diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 026f5dc..893984d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: uses: astral-sh/setup-uv@v4 - name: Set up Python - run: uv python install 3.12 + run: uv python install 3.14 - name: Build package run: uv build diff --git a/pyproject.toml b/pyproject.toml index 6761ca4..384cd6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Utilities", ]