Skip to content

Commit 901a863

Browse files
committed
Drop support for Python <3.9
1 parent 8bb8f20 commit 901a863

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
max-parallel: 4
1010
matrix:
1111
python-version:
12-
- "3.6"
13-
- "3.7"
14-
- "3.8"
12+
- "3.9"
1513
- "3.10"
14+
- "3.11"
15+
- "3.12"
16+
- "3.13"
1617

1718
steps:
1819
- uses: actions/checkout@v3

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[tox]
2-
envlist = py{36,37,38,310}
2+
envlist = py{39,310,311,312,313}
33
skip_missing_interpreters = True
44
skipsdist = True
55

66
[gh-actions]
77
python =
8-
3.6: py36
9-
3.7: py37
10-
3.8: py38
8+
3.9: py39
119
3.10: py310
10+
3.11: py311
11+
3.12: py312
12+
3.13: py313
1213

1314
[testenv]
1415
deps =

0 commit comments

Comments
 (0)