From c8e03ed61f4e9f4dbd0f06a2f6e9fd2ce0b20a2e Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 7 Oct 2024 23:31:55 +0200 Subject: [PATCH] Python: Verify support on Python 3.13 --- .github/workflows/tests.yml | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1d4985cb..a9c261db 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,10 +18,10 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'macos-latest'] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] cratedb-version: ['5.8.3'] - # To save resources, only use the most recent Python versions on macOS. + # To save resources, only verify the most recent Python versions on macOS. exclude: - os: 'macos-latest' python-version: '3.7' diff --git a/setup.py b/setup.py index 695b152f..532a192e 100644 --- a/setup.py +++ b/setup.py @@ -91,6 +91,7 @@ def read(path): '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 :: Database'