From 3aa7ede33970758e03710c7d70182b31ec66bb28 Mon Sep 17 00:00:00 2001 From: Jeff Dairiki Date: Wed, 15 Nov 2023 18:04:27 -0800 Subject: [PATCH] chore: Run CI tests under python3.12, too (#6) * test: run CI tests under python3.12, too * chore: add trove classifier for py312 --- .github/workflows/testing.yaml | 2 +- setup.cfg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 756f02d..2073118 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -14,7 +14,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'] lektor-version: [latest, stable] steps: - uses: actions/checkout@v3 diff --git a/setup.cfg b/setup.cfg index ef19851..0001ad4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,7 @@ classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9