mirror of
https://github.com/getpelican/pelican.git
synced 2026-05-28 03:16:13 +02:00
refactor: Require Python 3.11 and above
This commit is contained in:
parent
862ac78310
commit
68c341bd10
4 changed files with 4 additions and 6 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ version: 2
|
|||
build:
|
||||
os: ubuntu-22.04
|
||||
tools:
|
||||
python: "3.10"
|
||||
python: "3.11"
|
||||
|
||||
# Build HTML & PDF formats
|
||||
formats:
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue