From 06ab39e602fbb2da3111e81006295a2723c21687 Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Wed, 23 Oct 2024 17:19:19 -0700 Subject: [PATCH] Fix #260: Add support for Python 3.13 --- .github/workflows/main.yml | 2 +- pyproject.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 62f3ba7..e1d9bec 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] name: Python ${{ matrix.python-version}} steps: diff --git a/pyproject.toml b/pyproject.toml index d0c841c..88ad3c9 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", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", ] @@ -111,6 +112,7 @@ envlist = py310 py311 py312 + py313 uv_python_preference = only-managed [gh-actions] @@ -120,6 +122,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 [testenv] extras = dev,ini,sphinx,yaml