Skip to content

Commit 0d7dede

Browse files
committed
Admin: Support Python 3.13
1 parent 3f9fac4 commit 0d7dede

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ jobs:
1717
- '3.10'
1818
- '3.11'
1919
- '3.12'
20+
- '3.13.0-beta.2'
2021

2122
steps:
2223
- uses: actions/checkout@master
2324

2425
- name: Set up Python
2526
uses: actions/setup-python@v4
27+
with:
28+
python-version: ${{ matrix.python-version }}
2629

2730
- name: Install dependencies
2831
run: |
@@ -44,16 +47,17 @@ jobs:
4447
- '3.10'
4548
- '3.11'
4649
- '3.12'
50+
- '3.13.0-beta.2'
4751
implementation:
4852
- '' # CPython
4953
- 'pypy' # PyPy
5054
exclude: # unreleased;
51-
- implementation: 'pypy'
52-
python-version: '3.10'
5355
- implementation: 'pypy'
5456
python-version: '3.11'
5557
- implementation: 'pypy'
5658
python-version: '3.12'
59+
- implementation: 'pypy'
60+
python-version: '3.13.0-beta.2'
5761

5862
steps:
5963
- uses: actions/checkout@master

0 commit comments

Comments
 (0)