From f5cb28f22e350b137a37ab492719c63f72d13e13 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 19 Mar 2026 11:06:21 +0100 Subject: [PATCH] CI/tox: do not test on Python 3.8 anymore This is mainly to stop CI failing all the time due to the py38 job. The code likely still works on 3.8, but Python 3.8 is EOL since quite a while though, so use it on your own risk. --- .github/workflows/ci.yml | 5 +---- tox.ini | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 408ba59ee..81410e512 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,12 +54,9 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-22.04 - python-version: '3.8' - toxenv: py38-fuse2 - os: ubuntu-22.04 python-version: '3.9' - toxenv: py39-fuse3 + toxenv: py39-fuse2 - os: ubuntu-22.04 python-version: '3.10' toxenv: py310-fuse3 diff --git a/tox.ini b/tox.ini index 2732b501e..425aba6ab 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ # fakeroot -u tox --recreate [tox] -envlist = py{38,39,310,311,312}-{none,fuse2,fuse3} +envlist = py{39,310,311,312}-{none,fuse2,fuse3} minversion = 3.2 requires = pkgconfig