From e4350da924a9ec943670837ae7636b436abea622 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Thu, 7 Dec 2023 16:17:38 +0100 Subject: [PATCH] packaging: add Python 3.12 as supported version --- .github/workflows/lint-and-tests.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-and-tests.yml b/.github/workflows/lint-and-tests.yml index 4bbcf7e4..ed571bba 100644 --- a/.github/workflows/lint-and-tests.yml +++ b/.github/workflows/lint-and-tests.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/setup.py b/setup.py index f9299712..208101a3 100644 --- a/setup.py +++ b/setup.py @@ -84,6 +84,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License",