From da0c2ed91e661cb466b1bdef52e4dd1cf8240760 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 2 Oct 2024 01:11:07 -0400 Subject: [PATCH] chore: add 3.13 and fix tests to run on different Pythons Signed-off-by: Henry Schreiner --- .github/workflows/main.yml | 7 ++++--- pyproject.toml | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 954265a..6010be9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,8 +20,6 @@ jobs: python-version: "3.x" - name: Check manifest uses: pre-commit/action@v3.0.1 - with: - extra_args: --hook-stage manual checks: runs-on: ubuntu-latest @@ -34,15 +32,18 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" name: Check Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v4 with: fetch-depth: 0 + - uses: actions/setup-python@v5 with: - python-version: "3.x" + python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install package run: python -m pip install -e .[test] diff --git a/pyproject.toml b/pyproject.toml index b670dcc..9e1a0a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,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", ] dynamic = ["version"]