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", ]