Skip to content

Commit 6aedb8c

Browse files
committed
Fix Python version used in CI
Test Python 3.13
1 parent 661ef6e commit 6aedb8c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,18 @@ jobs:
3636
runs-on: ubuntu-latest
3737
timeout-minutes: 30
3838
strategy:
39-
max-parallel: 3
39+
max-parallel: 4
4040
matrix:
41-
python-version: ['3.10', '3.11', '3.12']
41+
python-version: ['3.10', '3.11', '3.12', '3.13']
4242

4343
steps:
4444

4545
- uses: actions/checkout@v4
4646

4747
- name: Set up Python ${{ matrix.python-version }}
4848
uses: actions/setup-python@v5
49+
with:
50+
python-version: ${{ matrix.python-version }}
4951

5052
- name: Install dependencies
5153
run: |

0 commit comments

Comments
 (0)