Skip to content

Commit 62ea1b7

Browse files
authored
Add support for Python 3.13 (#367)
1 parent a6585e9 commit 62ea1b7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/main.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ jobs:
2222
- '3.10'
2323
- '3.11'
2424
- '3.12'
25+
- '3.13'
2526

2627
steps:
27-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2829

29-
- uses: actions/setup-python@v4
30+
- uses: actions/setup-python@v5
3031
with:
3132
python-version: ${{ matrix.python-version }}
33+
allow-prereleases: true
3234

3335
- name: Install dependencies
3436
run: |
@@ -53,9 +55,9 @@ jobs:
5355
runs-on: ubuntu-20.04
5456
needs: tests
5557
steps:
56-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5759

58-
- uses: actions/setup-python@v4
60+
- uses: actions/setup-python@v5
5961
with:
6062
python-version: '3.10'
6163

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# These should match the GitHub Actions env list
3-
envlist = py27,py37,py38,py39,py310,py311,py312
3+
envlist = py37,py38,py39,py310,py311,py312,py313
44

55
[testenv]
66
install_command = pip install {opts} {packages}

0 commit comments

Comments
 (0)