diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e23f7656..39bbc202 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,6 +36,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - uses: actions/checkout@v4 with: @@ -70,7 +71,7 @@ jobs: uses: coverallsapp/github-action@v2 with: parallel-finished: true - 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 build: name: Build diff --git a/noxfile.py b/noxfile.py index 26aeb950..f289a5f5 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 24c2cc59..7060f9d8 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", ]