Skip to content

Commit

Permalink
workflow: add Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jkloetzke committed Aug 2, 2024
1 parent d05bf54 commit 9a52820
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
fail-fast: false

steps:
Expand Down Expand Up @@ -63,10 +63,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.12"

- name: Prepare MSYS2 environment
run: |
Expand Down Expand Up @@ -103,10 +103,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.12"

- name: Install dependencies
run: |
Expand Down

0 comments on commit 9a52820

Please sign in to comment.