Skip to content

Commit

Permalink
Drop Python 3.7 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
nblock committed Apr 25, 2024
1 parent 8e6889a commit 0775124
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
strategy:
matrix:
python:
- version: "3.7"
toxenv: py37
- version: "3.8"
toxenv: py38
- version: "3.9"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ considered stable enough for daily use:
After installation ``feeds`` is available in your virtual environment.

Feeds supports Python 3.7+.
Feeds supports Python 3.8+.

Quickstart
----------
Expand Down
2 changes: 1 addition & 1 deletion bin/pyupgrade
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -e
set -u

find feeds/ tests/ -name '*.py' -print0 | xargs --null pyupgrade --py37-plus $@
find feeds/ tests/ -name '*.py' -print0 | xargs --null pyupgrade --py38-plus $@
2 changes: 1 addition & 1 deletion docs/get.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ considered stable enough for daily use:
After installation ``feeds`` is available in your virtual environment.

Feeds supports Python 3.7+.
Feeds supports Python 3.8+.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311
envlist = py38,py39,py310,py311

[testenv]
description = Run tests
Expand Down

0 comments on commit 0775124

Please sign in to comment.