Skip to content

Commit 020d7fe

Browse files
committed
packaging: restore Python 3.8 and 3.9
1 parent a94256f commit 020d7fe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def load_requirements(requirements_files: Path | list[Path]) -> list:
7878
# run
7979
entry_points={"mkdocs.plugins": ["rss = mkdocs_rss_plugin.plugin:GitRssPlugin"]},
8080
# dependencies
81-
python_requires=">=3.10, <4",
81+
python_requires=">=3.8, <4",
8282
extras_require={
8383
# tooling
8484
"dev": load_requirements(HERE / "requirements/development.txt"),
@@ -92,6 +92,8 @@ def load_requirements(requirements_files: Path | list[Path]) -> list:
9292
"Intended Audience :: Developers",
9393
"Intended Audience :: Information Technology",
9494
"Programming Language :: Python :: 3",
95+
"Programming Language :: Python :: 3.8",
96+
"Programming Language :: Python :: 3.9",
9597
"Programming Language :: Python :: 3.10",
9698
"Programming Language :: Python :: 3.11",
9799
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)