Skip to content

Commit 87aef16

Browse files
authored
Drop support for py37 (#94)
1 parent 3de6649 commit 87aef16

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/tox.yml

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ jobs:
2424
include:
2525
- tox_env: lint
2626
python-version: "3.10"
27-
- tox_env: py37
28-
python-version: 3.7
2927
- tox_env: py38,py38-devel
3028
python-version: 3.8
3129
- tox_env: py39

mypy.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.7
2+
python_version = 3.8
33
color_output = True
44
error_summary = True
55
disallow_untyped_calls = True

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
# https://peps.python.org/pep-0621/#readme
10-
requires-python = ">=3.7"
10+
requires-python = ">=3.8"
1111
dynamic = ["version"]
1212

1313
name = "tox-extra"
@@ -27,7 +27,6 @@ classifiers = [
2727
"License :: OSI Approved :: MIT License",
2828
"Programming Language :: Python",
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.7",
3130
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9",
3332
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)