From 5cd27dadf59ae88598f576bc8004562adabf66e3 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Tue, 7 Nov 2023 17:51:21 +0100 Subject: [PATCH] Update tested Python versions Nothing actually uses Python 3.7, but 3.12 is becoming more common (especially on Mac). --- .github/workflows/pr-check.yml | 8 ++++---- tox.ini | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index f934b2ef..77e1de1d 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -24,11 +24,11 @@ jobs: matrix: python-version: - '3.6.8' # slc7, slc8 and cs8 containers - - '3.7' - - '3.8' - - '3.9' - - '3.10' + - '3.8.10' # ubuntu2004 container + - '3.9.16' # slc9 container + - '3.10.6' # ubuntu2204 container - '3.11' + - '3.12' steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index 44bee403..9d5f87aa 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.20 -envlist = lint, py{27, 36, 37, 38, 39, 310, 311}, darwin +envlist = lint, py{27, 36, 37, 38, 39, 310, 311, 312, 313}, darwin [gh-actions] # The "lint" job is run separately. @@ -12,6 +12,8 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 + 3.13: py313 [testenv:lint] # Warning: This environment inherits settings from the main [testenv] section.