Skip to content

Commit 5002718

Browse files
committed
Drop Python 3.7 support, Add 3.11 and 3.12 support
Signed-off-by: Alfred Wingate <[email protected]>
1 parent 1a8ef34 commit 5002718

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
include:
18-
- os: ubuntu-22.04
19-
python-version: 3.7
2018
- os: ubuntu-22.04
2119
python-version: 3.8
2220
- os: ubuntu-22.04
2321
python-version: 3.9
2422
- os: ubuntu-22.04
2523
python-version: '3.10'
24+
- os: ubuntu-22.04
25+
python-version: '3.11'
26+
- os: ubuntu-22.04
27+
python-version: '3.12'
2628
runs-on: ${{ matrix.os }}
2729
name: Python ${{ matrix.os }} / ${{ matrix.python-version }} build
2830
steps:

CONTRIBUTING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Developer Documentation
22
=======================
33

4-
This project supports Python 3.7, 3.8, 3.9, and 3.10. Other Python versions
4+
This project supports Python 3.8, 3.9, 3.10, 3.11 and 3.12. Other Python versions
55
might work as well but are not regularly tested.
66

77
For locally testing changes it is very handy to install `tox` which automates

0 commit comments

Comments
 (0)