Skip to content

Commit

Permalink
ci: drop python 3.7 on mac
Browse files Browse the repository at this point in the history
github actions runners do not include this image:

Version 3.7 was not found in the local cache
Error: The version '3.7' with architecture 'arm64' was not found for macOS 14.4.1.
The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
  • Loading branch information
kmantel committed May 16, 2024
1 parent b0d2d02 commit cfcf497
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# 3.7 is dropped on macos 14 runners
- python-version: '3.7'
os: macos

steps:
- name: Checkout sources
Expand Down

0 comments on commit cfcf497

Please sign in to comment.