Skip to content

Commit

Permalink
CI: fix Python version specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Feb 10, 2024
1 parent 1f521b4 commit 789c024
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8, 3.9, 3.10, 3.11]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
# This cancels any such job that is still runnning
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
# This cancels any such job that is still runnning
- name: Cancel Previous Runs
Expand Down

0 comments on commit 789c024

Please sign in to comment.