From 6cd74f080c17647a95ff72c96708431227d2a4b8 Mon Sep 17 00:00:00 2001 From: Marko Ristin-Kaufmann Date: Mon, 27 Oct 2025 16:11:17 +0100 Subject: [PATCH] Deprecate Python 3.7 in CI and support for 3.12 GitHub does not support Python 3.7, so we removed it from the continous integration workflow. At the same time, we add support for Python 3.12 as it is now stable. --- .github/workflows/ci.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81799ab..fb9f115 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@master diff --git a/setup.py b/setup.py index a8dd733..63d96a3 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', # fmt: on ], license="License :: OSI Approved :: MIT License",