From 301bcee3168e825e2df0ae837e2888085a137f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Tue, 9 Jul 2024 23:10:38 -0600 Subject: [PATCH] Test with Python 3.13 --- .github/workflows/check.yml | 2 ++ pyproject.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c31910c..73e5158 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -21,6 +21,7 @@ jobs: matrix: py: - "pypy3.9" # ahead to start it earlier because takes longer + - "3.13" - "3.12" - "3.11" - "3.10" @@ -36,6 +37,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.12" + allow-prereleases: true - name: Pick environment to run run: | import codecs; import os diff --git a/pyproject.toml b/pyproject.toml index feec11f..b3e524f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,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", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules", @@ -92,6 +93,7 @@ template = "test" description = "Run the test suite" matrix = [ { python = [ + "3.13", "3.12", "3.11", "3.10",