Skip to content

Commit 1dbd717

Browse files
committed
Drop support for EOL Python 3.7
1 parent 946f95d commit 1dbd717

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ classifiers = [
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3 :: Only",
16-
"Programming Language :: Python :: 3.7",
1716
"Programming Language :: Python :: 3.8",
1817
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
@@ -28,7 +27,7 @@ authors = [
2827

2928
# NOTE: requires-python is duplicated in __pip-runner__.py.
3029
# When changing this value, please change the other copy as well.
31-
requires-python = ">=3.7"
30+
requires-python = ">=3.8"
3231

3332
[project.urls]
3433
Homepage = "https://pip.pypa.io/"
@@ -150,7 +149,7 @@ ignore = [
150149
"B904", # Ruff enables opinionated warnings by default
151150
"B905", # Ruff enables opinionated warnings by default
152151
]
153-
target-version = "py37"
152+
target-version = "py38"
154153
line-length = 88
155154
select = [
156155
"ASYNC",

src/pip/__pip-runner__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import sys
1010

11-
# Copied from setup.py
11+
# Copied from pyproject.toml
1212
PYTHON_REQUIRES = (3, 8)
1313

1414

0 commit comments

Comments
 (0)