From bd260adf09e315c8d6e9fedc39ae11b7d32aee07 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Tue, 13 Aug 2024 19:58:56 +0100 Subject: [PATCH] support python 3.13 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f1ec24..4fd9898 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu, macos] - 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'] # test pypy on ubuntu only to speed up CI, no reason why macos X pypy should fail separately include: - os: 'ubuntu' diff --git a/pyproject.toml b/pyproject.toml index 86d9744..b2a1df8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ classifiers = [ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet', 'Typing :: Typed',