Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
tox-env: [py39, py310, py311, py312, py313, py314, pypy39, pypy310, pygments]
tox-env: [py310, py311, py312, py313, py314, pypy310, pypy311, pygments]
include:
- tox-env: py39
python-version: '3.9'
- tox-env: py310
python-version: '3.10'
- tox-env: py311
Expand All @@ -34,10 +32,10 @@ jobs:
python-version: '3.13'
- tox-env: py314
python-version: '3.14'
- tox-env: pypy39
python-version: pypy-3.9
- tox-env: pypy310
python-version: pypy-3.10
- tox-env: pypy311
python-version: pypy-3.11
- tox-env: pygments
python-version: '3.11'
env:
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ See the [Contributing Guide](contributing.md) for details.

## [Unreleased]

### Changed

* Officially support Python 3.14 and PyPy 3.11 and drop support for Python 3.9
and PyPy 3.9.

### Fixed

* Fix an HTML comment parsing case in some Python versions that can cause an
Expand Down
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,18 @@ maintainers = [
]
license = "BSD-3-Clause"
license-files = ["LICENSE.md"]
requires-python = '>=3.9'
dependencies = [
"importlib-metadata>=4.4;python_version<'3.10'"
]
requires-python = '>=3.10'
keywords = ['markdown', 'markdown-parser', 'python-markdown', 'markdown-to-html']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3 :: Only',
'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 = py{39, 310, 311, 312, 313, py314}, pypy{39, 310}, pygments, flake8, checkspelling, pep517check, checklinks
envlist = py{310, 311, 312, 313, 314}, pypy{310, 311}, pygments, flake8, checkspelling, pep517check, checklinks
isolated_build = True

[testenv]
Expand Down