refactor: Require Python 3.11 and above

This commit is contained in:
Justin Mayer 2026-03-31 08:48:50 +02:00
commit 68c341bd10
4 changed files with 4 additions and 6 deletions

View file

@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu, macos, windows]
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6

View file

@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"
python: "3.11"
# Build HTML & PDF formats
formats:

View file

@ -14,7 +14,6 @@ classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
@ -27,7 +26,7 @@ classifiers = [
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: reStructuredText",
]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"blinker>=1.7.0",
"docutils>=0.20.1",

View file

@ -1,9 +1,8 @@
[tox]
envlist = py{3.10,3.11,3.12,3.13,3.14},docs
envlist = py{3.11,3.12,3.13,3.14},docs
[testenv]
basepython =
py3.10: python3.10
py3.11: python3.11
py3.12: python3.12
py3.13: python3.13