Skip to content

Commit

Permalink
packaging: restore Python 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Jun 23, 2024
1 parent a94256f commit 020d7fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def load_requirements(requirements_files: Path | list[Path]) -> list:
# run
entry_points={"mkdocs.plugins": ["rss = mkdocs_rss_plugin.plugin:GitRssPlugin"]},
# dependencies
python_requires=">=3.10, <4",
python_requires=">=3.8, <4",
extras_require={
# tooling
"dev": load_requirements(HERE / "requirements/development.txt"),
Expand All @@ -92,6 +92,8 @@ def load_requirements(requirements_files: Path | list[Path]) -> list:
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down

0 comments on commit 020d7fe

Please sign in to comment.