From d2163dbf65638ec0867bd08196b06ef156907b98 Mon Sep 17 00:00:00 2001 From: Florian Haas Date: Thu, 4 Apr 2024 10:01:11 +0200 Subject: [PATCH] squash! Add support for Python 3.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also, update the GitHub Actions workflow matrix so that we test all supported pip versions with Python 3.8–3.11, but only pip 23 on Python 3.12. --- .github/workflows/tox.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 6024dd3..d4a3ff4 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -14,11 +14,13 @@ jobs: - '3.9' - '3.10' - '3.11' - - '3.12' pip-version: - # - 22.0.4 - # - 23.0.1 + - 22.0.4 + - 23.0.1 - 23.2.1 + include: + - python-version: '3.12' + pip-version: '23.2.1' steps: - name: Check out code