Skip to content

Commit f59f7b7

Browse files
authored
Drop support for EOL Python 3.7 (#90)
1 parent b471da1 commit f59f7b7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/lint_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
- run: isort --check-only --profile black .
2222
- run: pip install --editable .
2323
- run: mypy --ignore-missing-imports --install-types --non-interactive .
24-
- run: shopt -s globstar && pyupgrade --py37-plus **/*.py || true
24+
- run: shopt -s globstar && pyupgrade --py38-plus **/*.py || true
2525
- run: safety check

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1515
os: [windows-latest, macos-latest, ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ dependencies = [
1414
]
1515
readme = "readme.rst"
1616
classifiers = [
17-
"Programming Language :: Python :: 3.7",
17+
"Programming Language :: Python :: 3.8",
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: Apache Software License",
2020
]
21-
requires-python = ">=3.7"
21+
requires-python = ">=3.8"
2222
dynamic = ["version", "description"]
2323

2424
[project.urls]

readme.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Tests are to be written using `pytest <https://docs.pytest.org/en/latest/>`_.
3030
Setup Info
3131
==========
3232

33-
Requires Python 3.7.
33+
Requires Python 3.8+.
3434

3535
.. code-block:: console
3636

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{312, 311, 310, 39, 38, 37}
3+
py{312, 311, 310, 39, 38}
44
isolated_build = true
55

66
[testenv]

0 commit comments

Comments
 (0)