Skip to content

Commit 5a1748a

Browse files
committed
Add support for Python 3.13
1 parent a1cc169 commit 5a1748a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
Windows:
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313

1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717
- name: Setup python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python }}
2121
allow-prereleases: true
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev']
38+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
3939
check_formatting: ['0']
4040
extra_name: ['']
4141
include:
@@ -46,14 +46,14 @@ jobs:
4646
- name: Checkout
4747
uses: actions/checkout@v4
4848
- name: Setup python
49-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5050
if: "!endsWith(matrix.python, '-dev')"
5151
with:
5252
python-version: ${{ matrix.python }}
5353
cache: pip
5454
cache-dependency-path: test-requirements.txt
5555
- name: Setup python (dev)
56-
uses: deadsnakes/action@v3.0.1
56+
uses: deadsnakes/action@v3.2.0
5757
if: endsWith(matrix.python, '-dev')
5858
with:
5959
python-version: '${{ matrix.python }}'
@@ -71,12 +71,12 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
74+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
7575
steps:
7676
- name: Checkout
7777
uses: actions/checkout@v4
7878
- name: Setup python
79-
uses: actions/setup-python@v4
79+
uses: actions/setup-python@v5
8080
with:
8181
python-version: ${{ matrix.python }}
8282
allow-prereleases: true

0 commit comments

Comments
 (0)