Skip to content

Commit

Permalink
Support Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 28, 2022
1 parent 0641272 commit 2e47813
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "pypy2"
- "pypy-3.7"

Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Changes
1.2.1 (unreleased)
------------------

* Add support for Python 3.8, 3.9, and 3.10.
* Add support for Python 3.8, 3.9, 3.10, and 3.11.
* Drop support for Python 3.5 and 3.6.
* Show line numbers when complaining about malformed input lines.
* Handle "[pid NNN]" prefixes with more than one space.
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ environment:
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python310"
- PYTHON: "C:\\Python311"

init:
- "echo %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py37,py38,py39,py310,pypy,pypy3
envlist = py27,py37,py38,py39,py310,py311,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 2e47813

Please sign in to comment.