Skip to content

Commit

Permalink
Officially support Python 3.11 (#1313)
Browse files Browse the repository at this point in the history
Python 3.11 was released 2023-10-02.
  • Loading branch information
waylan committed Dec 9, 2022
1 parent a8ad6fc commit 4dab9a7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
tox-env: [py37, py38, py39, py310, pypy37, pypy38, pypy39, pygments]
tox-env: [py37, py38, py39, py310, py311, pypy37, pypy38, pypy39, pygments]
include:
- tox-env: py37
python-version: '3.7'
Expand All @@ -30,6 +30,8 @@ jobs:
python-version: '3.9'
- tox-env: py310
python-version: '3.10'
- tox-env: py311
python-version: '3.11'
- tox-env: pypy37
python-version: pypy-3.7
- tox-env: pypy38
Expand Down
1 change: 1 addition & 0 deletions docs/change_log/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Python-Markdown Change Log

* Improve standalone * and _ parsing (#1300).
* Consider `<html>` HTML tag a block-level element (#1309).
* Officially support for Python 3.11.

July 15, 2022: version 3.4.1 (a bug-fix release).

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def get_version():
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37, 38, 39, 310}, pypy{37, 38, 39}, pygments, flake8, checkspelling, pep517check, checklinks
envlist = py{37, 38, 39, 310, 311}, pypy{37, 38, 39}, pygments, flake8, checkspelling, pep517check, checklinks
isolated_build = True

[testenv]
Expand All @@ -24,6 +24,7 @@ commands = flake8 {toxinidir}/markdown {toxinidir}/tests {toxinidir}/setup.py
skip_install = true

[testenv:checkspelling]
allowlist_externals = {toxinidir}/checkspelling.sh
deps =
mkdocs
mkdocs_nature
Expand Down

0 comments on commit 4dab9a7

Please sign in to comment.