Skip to content

Commit

Permalink
Remove Python 3.7 support (#174)
Browse files Browse the repository at this point in the history
- EOL in 6 months
- build are usually run in CI where you can pick the Python version you
want
- walrus operator appears in 3.8
  • Loading branch information
Guts authored Feb 21, 2023
2 parents 191efa5 + 4d39d5d commit ca18790
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
# run
entry_points={"mkdocs.plugins": ["rss = mkdocs_rss_plugin.plugin:GitRssPlugin"]},
# dependencies
python_requires=">=3.7, <4",
python_requires=">=3.8, <4",
extras_require={
"dev": requirements_dev,
"doc": requirements_docs,
Expand All @@ -80,7 +80,6 @@
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit ca18790

Please sign in to comment.