Skip to content

Commit

Permalink
Github artifacts: Limit Python versions
Browse files Browse the repository at this point in the history
The build failed trying to create Python 3.6 for Mac.  There was no Python version in the
matrix, so I added it, but I'm not sure if that is what is going on.  I'm not sure what the
default behavior is.
  • Loading branch information
mkleehammer committed Aug 26, 2023
1 parent ec57b2a commit 7b270b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/artifacts_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
strategy:
matrix:
# https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job
# ubuntu-20.04 supports more versions of Python than ubuntu-22.04
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
os: [windows-2019, macos-11, ubuntu-20.04]
os: [windows-2019, macos-11, ubuntu-22.04]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 7b270b8

Please sign in to comment.