Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit 43469a4

Browse files
committed
Add support and testing for python 3.11
1 parent 71f4f96 commit 43469a4

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
strategy:
7171
matrix:
72-
python-version: ['3.8', '3.9', '3.10']
72+
python-version: ['3.8', '3.9', '3.10', '3.11']
7373

7474
steps:
7575
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
77
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
88
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
99

10+
11+
## [Unreleased]
12+
13+
### Added
14+
- Added support and testing for Python 3.11.
15+
1016
## [0.5.0] - 2023-02-15
1117

1218
### Added

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
22
# keep this list in sync with .github/workflows/main.yaml
3-
envlist = clean,py38,py39,py310,report
3+
envlist = clean,py38,py39,py310,py311,report
44

55
[gh-actions]
66
python =
77
3.8: py38
88
3.9: py39
99
3.10: py310
10+
3.11: py311
1011

1112
[testenv]
1213
deps =

0 commit comments

Comments
 (0)