Skip to content

Commit

Permalink
Add Ubuntu 24.04 and macOS 13
Browse files Browse the repository at this point in the history
This required removing Python 3.7 which was EOL'd in 2023, as it's no longer
available in newer OS versions:

> Error: The version '3.7' with architecture 'x64' was not found for Ubuntu
> 24.04. The list of all available versions can be found here:
> https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json

Python 3.7 EOL as of 2023-06-27:

* https://devguide.python.org/versions/
* https://peps.python.org/pep-0537/
  • Loading branch information
mbrukman committed Aug 19, 2024
1 parent 8b25b0d commit 37b4e74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-22.04', 'macos-12' ]
python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
os: [ 'ubuntu-24.04', 'ubuntu-22.04', 'macos-13', 'macos-12' ]
python: [ '3.8', '3.9', '3.10', '3.11' ]
name: Python ${{ matrix.python }} (${{ matrix.os }})
steps:
- name: Checkout repo
Expand Down

0 comments on commit 37b4e74

Please sign in to comment.