Skip to content

Commit b3f77ee

Browse files
committed
Fix supported python versions
1 parent e5957cb commit b3f77ee

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
os: [ubuntu-latest, macos-latest]
1515
# Use only lowest and highest supported python versions for now,
1616
# to speed up CI runs
17-
python-version: [3.8, "3.12"]
17+
python-version: ["3.10", "3.14"]
1818
node-version: [22]
1919
fail-fast: false
2020

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, macos-latest]
14-
python-version: [3.9, "3.10", "3.11", "3.12", "3.13", "3.14"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1515
fail-fast: false
1616

1717
steps:

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.13.1.dev1"
88
description = "lightweight Disqus alternative"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"
11-
license = "MIT"
11+
license = {text = "MIT"}
1212
authors = [
1313
{name = "Martin Zimmermann", email = "info@posativ.org"}
1414
]
@@ -17,8 +17,6 @@ classifiers = [
1717
"Topic :: Internet",
1818
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
1919
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
20-
"Programming Language :: Python :: 3.8",
21-
"Programming Language :: Python :: 3.9",
2220
"Programming Language :: Python :: 3.10",
2321
"Programming Language :: Python :: 3.11",
2422
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)