Skip to content

Commit 4d39d5d

Browse files
committed
Remove Python 3.7 support
1 parent 191efa5 commit 4d39d5d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/lint-and-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
24+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2525

2626
# Steps represent a sequence of tasks that will be executed as part of the job
2727
steps:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
# run
6969
entry_points={"mkdocs.plugins": ["rss = mkdocs_rss_plugin.plugin:GitRssPlugin"]},
7070
# dependencies
71-
python_requires=">=3.7, <4",
71+
python_requires=">=3.8, <4",
7272
extras_require={
7373
"dev": requirements_dev,
7474
"doc": requirements_docs,
@@ -80,7 +80,6 @@
8080
"Intended Audience :: Developers",
8181
"Intended Audience :: Information Technology",
8282
"Programming Language :: Python :: 3",
83-
"Programming Language :: Python :: 3.7",
8483
"Programming Language :: Python :: 3.8",
8584
"Programming Language :: Python :: 3.9",
8685
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)