Skip to content

Commit 8447dae

Browse files
authored
Add explicit support for Python 3.11 (#203)
* Add build for Python 3.11 * Update Changelog
1 parent edc9a21 commit 8447dae

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: "ubuntu-22.04"
1111
strategy:
1212
matrix:
13-
python-version: ["3.7", "3.8", "3.9", "3.10"]
13+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1414

1515
steps:
1616

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ Unreleased_
2323
See also `latest documentation
2424
<https://flake8-aaa.readthedocs.io/en/latest/#__unreleased_marker__>`_.
2525

26+
Added
27+
.....
28+
29+
* 🎈 Support for Python 3.11 `Pull #203
30+
<https://github.com/jamescooke/flake8-aaa/pull/203>`_
31+
2632
0.13.0_ - 2023/02/17
2733
--------------------
2834

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def readme():
4848
'Programming Language :: Python :: 3.8',
4949
'Programming Language :: Python :: 3.9',
5050
'Programming Language :: Python :: 3.10',
51+
'Programming Language :: Python :: 3.11',
5152
'Programming Language :: Python',
5253
],
5354
zip_safe=False,

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# Run pytest on test suite.
3131

3232
[tox]
33-
envlist = py3{7,8,9,10}-{install,lint,examples,examples_aaa,test,cmd,cmdbad},py310-doc
33+
envlist = py3{7,8,9,10,11}-{install,lint,examples,examples_aaa,test,cmd,cmdbad},py310-doc
3434

3535
[testenv]
3636
deps =
@@ -44,7 +44,7 @@ commands =
4444
cmdbad: make cmdbad
4545
doc: make doc
4646
examples: {[examples]commands}
47-
py3{8,9}-examples: {[py38-examples]commands}
47+
py3{8,9,10,11}-examples: {[py38-examples]commands}
4848
examples_aaa: {[examples_aaa]commands}
4949
install: {[install]commands}
5050
lint: make lint
@@ -99,3 +99,4 @@ python =
9999
3.8: py38
100100
3.9: py39
101101
3.10: py310
102+
3.11: py311

0 commit comments

Comments
 (0)