Skip to content

Commit 9b539ba

Browse files
add py3.12 and py3.13 testing
1 parent e6043e7 commit 9b539ba

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11']
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1414

1515
steps:
16-
- uses: actions/checkout@v3
17-
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v3
19-
with:
20-
python-version: ${{ matrix.python-version }}
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
pip install tox tox-gh-actions poetry==1.4.1
25-
- name: Test with tox
26-
run: tox
16+
- uses: actions/checkout@v3
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v3
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install tox tox-gh-actions poetry==1.4.1
25+
- name: Test with tox
26+
run: tox

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
requires =
33
tox>=4
4-
envlist = py{38,39,310,311,312}, black, ruff, pyright, isort
4+
envlist = py{38,39,310,311,312,313}, black, ruff, pyright, isort
55
isolated_build = true
66

77
[gh-actions]
@@ -11,6 +11,7 @@ python =
1111
3.10: py310
1212
3.11: py311
1313
3.12: py312
14+
3.13: py313
1415

1516
[testenv]
1617
setenv =

0 commit comments

Comments
 (0)