Skip to content

Commit e524a08

Browse files
chore: Test with Python 3.12
1 parent 9c4e616 commit e524a08

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Diff for: .github/workflows/test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: ["3.8", "3.9", "3.10", "3.11"]
23+
python-version:
24+
- "3.8"
25+
- "3.9"
26+
- "3.10"
27+
- "3.11"
28+
- "3.12"
2429
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
2530
steps:
2631
- uses: actions/checkout@v4

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy
22

33
[tox]
4-
envlist = py37, py38, py39, py310, py311
4+
envlist = py{37,38,39,310,311,312}
55
isolated_build = true
66

77

0 commit comments

Comments
 (0)