From 3e6b78f8e96a4fc34f3076bf117c3eb73a90cac2 Mon Sep 17 00:00:00 2001 From: Saransh Chopra Date: Fri, 8 Nov 2024 12:11:03 +0000 Subject: [PATCH] gh-336: support Python 3.13 (#337) Co-authored-by: Patrick J. Roddy --- .github/workflows/test.yml | 3 ++- noxfile.py | 2 +- pyproject.toml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9ec7e6c9..b1970480 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - name: Checkout source uses: actions/checkout@v4 @@ -78,7 +79,7 @@ jobs: - name: Coveralls finished uses: coverallsapp/github-action@v2 with: - carryforward: run-3.9,run-3.10,run-3.11,run-3.12 + carryforward: run-3.9,run-3.10,run-3.11,run-3.12,run-3.13 parallel-finished: true build: diff --git a/noxfile.py b/noxfile.py index 72d740eb..f5d0ba52 100644 --- a/noxfile.py +++ b/noxfile.py @@ -10,7 +10,7 @@ nox.options.reuse_existing_virtualenvs = True nox.options.sessions = ["lint", "tests"] -ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12"] +ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13"] @nox.session diff --git a/pyproject.toml b/pyproject.toml index 10bf022c..b3ea3561 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,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 :: Astronomy", "Topic :: Scientific/Engineering :: Physics", "Typing :: Typed",