From 71eb0e2a9ad2d1ff4fc0cf45c7714372174e5af1 Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Fri, 8 Nov 2024 06:56:31 -0600 Subject: [PATCH] Add support for Python 3.13 (#1160) --- .github/workflows/test.yaml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b081b526..b8cca6b6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] environment-file: [ci/environment.yml] steps: diff --git a/pyproject.toml b/pyproject.toml index 01989b57..ed7a8666 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,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", "Topic :: System :: Distributed Computing", ]