From 087de55cdb7f19a5b3006dd55cfc266b125451cb Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 5 Dec 2024 10:24:24 +0100 Subject: [PATCH] tox: drop Python 3.7 and add Python 3.9 The version 3.7 is longer provided in the testing environment. The version 3.9 is the EL9 default, it is good to test this one. --- .github/workflows/fedora-tox.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fedora-tox.yml b/.github/workflows/fedora-tox.yml index efab8749..81260ed4 100644 --- a/.github/workflows/fedora-tox.yml +++ b/.github/workflows/fedora-tox.yml @@ -39,7 +39,7 @@ jobs: tox_env: # sync with /tox.ini - py36 - - py37 + - py39 - py311 - py312 - py313 diff --git a/tox.ini b/tox.ini index c965e8b4..e3abb97e 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ max-line-length=120 [tox] # sync with /.github/workflows/fedora-tox.yml -envlist = py{36,37,311,312,313} +envlist = py{36,39,311,312,313} skipsdist = True