From 2e95d063ac6a5544a1c321dec4158ac3b8df0a3b Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sun, 10 Nov 2024 20:29:54 -0500 Subject: [PATCH] Add back Python 3.8 on Ubuntu 24.04 This was recently added to the config so it should now work: https://github.com/actions/python-versions/commit/dd24c2e5e761eda3ba218cc560a02e7b079cb943 --- .github/workflows/main.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cec5b93..0621ed1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,12 +43,6 @@ jobs: matrix: os: [ 'ubuntu-24.04', 'ubuntu-22.04' ] python: [ '3.12', '3.11', '3.10', '3.9','3.8' ] - exclude: - # GitHub Actions doesn't provide Python 3.8 for Ubuntu 24.04; - # all of the available Python versions are listed here: - # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json - - os: 'ubuntu-24.04' - python: '3.8' runs-on: ${{ matrix.os }} name: Python ${{ matrix.python }} on ${{ matrix.os }}