Infra: Fix Python 3.9 on CI (#3763)

This commit is contained in:
Hugo van Kemenade 2024-04-23 18:19:48 +03:00 committed by GitHub
parent 7c00075fd9
commit e77956dd49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -39,6 +39,13 @@ jobs:
- "windows-latest"
- "macos-latest"
- "ubuntu-latest"
# Python 3.9 is on macos-13 but not macos-latest (macos-14-arm64)
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
exclude:
- { python-version: "3.9", os: "macos-latest" }
include:
- { python-version: "3.9", os: "macos-13" }
steps:
- uses: actions/checkout@v4