Skip to content

Commit

Permalink
Update python-package.yml
Browse files Browse the repository at this point in the history
Exclude Python version 3.7 for macos and ubuntu
  • Loading branch information
bzlmnop authored Dec 22, 2024
1 parent 66a026d commit 05e02cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
# Exclude macOS with Python 3.7 due to version unavailability on arm64
# Exclude macOS and ubuntu with Python 3.7 due to version unavailability on arm64
- os: macos-latest
python-version: "3.7"
- os: ubuntu-latest
python-version: "3.7"

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

0 comments on commit 05e02cb

Please sign in to comment.