From 9123f0510c9ffb2a010c605e6bf2fb51ac977bf1 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 6 Sep 2024 22:37:57 -0400 Subject: [PATCH] ci: add 3.13 testing (#12) Signed-off-by: Henry Schreiner --- .github/workflows/ci.yml | 6 +++--- pyproject.toml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d1ee63..0acf3a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.x" - - uses: yezz123/setup-uv@v4 + - uses: astral-sh/setup-uv@v2 - uses: pre-commit/action@v3.0.1 with: extra_args: --hook-stage manual --all-files @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.12"] + python-version: ["3.8", "3.13"] runs-on: [ubuntu-latest, macos-14] include: @@ -57,7 +57,7 @@ jobs: python-version: ${{ matrix.python-version }} allow-prereleases: true - - uses: yezz123/setup-uv@v4 + - uses: astral-sh/setup-uv@v2 - name: Install gfortran if: runner.os == 'macOS' diff --git a/pyproject.toml b/pyproject.toml index d277f56..6933fb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering", "Typing :: Typed", ]