Skip to content

Commit

Permalink
Add Python 3.12 and 3.13 to the testing (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Oct 10, 2024
1 parent 7a535c2 commit 5f04ab1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: pre-commit/[email protected].0
python-version: 3.x
- uses: pre-commit/[email protected].1

test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout source
uses: actions/checkout@v3
Expand Down Expand Up @@ -50,10 +50,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.x
- name: Build package test
run: |
pip install build
Expand All @@ -68,10 +68,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.x
- name: Install packagtes
run: |
pip install .[benchmark]
Expand All @@ -96,10 +96,10 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.x
- name: Build package
run: |
pip install build
Expand Down

0 comments on commit 5f04ab1

Please sign in to comment.