Skip to content

Commit

Permalink
Add explicit support for Python 3.11 (#203)
Browse files Browse the repository at this point in the history
* Add build for Python 3.11

* Update Changelog
  • Loading branch information
jamescooke committed Feb 19, 2023
1 parent edc9a21 commit 8447dae
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: "ubuntu-22.04"
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ Unreleased_
See also `latest documentation
<https://flake8-aaa.readthedocs.io/en/latest/#__unreleased_marker__>`_.

Added
.....

* 🎈 Support for Python 3.11 `Pull #203
<https://github.com/jamescooke/flake8-aaa/pull/203>`_

0.13.0_ - 2023/02/17
--------------------

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def readme():
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python',
],
zip_safe=False,
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Run pytest on test suite.

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

[testenv]
deps =
Expand All @@ -44,7 +44,7 @@ commands =
cmdbad: make cmdbad
doc: make doc
examples: {[examples]commands}
py3{8,9}-examples: {[py38-examples]commands}
py3{8,9,10,11}-examples: {[py38-examples]commands}
examples_aaa: {[examples_aaa]commands}
install: {[install]commands}
lint: make lint
Expand Down Expand Up @@ -99,3 +99,4 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311

0 comments on commit 8447dae

Please sign in to comment.