mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Add support for Python 3.13
This commit is contained in:
parent
07c7eacab9
commit
7d4adfce3f
3 changed files with 4 additions and 2 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"]
|
||||
python: ["3.10", "3.11", "3.12", "3.13"]
|
||||
include:
|
||||
- os: ubuntu
|
||||
python: "3.8"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ classifiers = [
|
|||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
|
||||
"Topic :: Internet :: WWW/HTTP :: Site Management",
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py{3.8,3.9,3.10,3.11,3.12},docs
|
||||
envlist = py{3.8,3.9,3.10,3.11,3.12,3.13},docs
|
||||
|
||||
[testenv]
|
||||
basepython =
|
||||
|
|
@ -8,6 +8,7 @@ basepython =
|
|||
py3.10: python3.10
|
||||
py3.11: python3.11
|
||||
py3.12: python3.12
|
||||
py3.13: python3.13
|
||||
passenv = *
|
||||
usedevelop=True
|
||||
deps =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue