File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ classifiers = [
13
13
" Programming Language :: Python" ,
14
14
" Programming Language :: Python :: 3" ,
15
15
" Programming Language :: Python :: 3 :: Only" ,
16
- " Programming Language :: Python :: 3.7" ,
17
16
" Programming Language :: Python :: 3.8" ,
18
17
" Programming Language :: Python :: 3.9" ,
19
18
" Programming Language :: Python :: 3.10" ,
@@ -28,7 +27,7 @@ authors = [
28
27
29
28
# NOTE: requires-python is duplicated in __pip-runner__.py.
30
29
# When changing this value, please change the other copy as well.
31
- requires-python = " >=3.7 "
30
+ requires-python = " >=3.8 "
32
31
33
32
[project .urls ]
34
33
Homepage = " https://pip.pypa.io/"
@@ -150,7 +149,7 @@ ignore = [
150
149
" B904" , # Ruff enables opinionated warnings by default
151
150
" B905" , # Ruff enables opinionated warnings by default
152
151
]
153
- target-version = " py37 "
152
+ target-version = " py38 "
154
153
line-length = 88
155
154
select = [
156
155
" ASYNC" ,
Original file line number Diff line number Diff line change 8
8
9
9
import sys
10
10
11
- # Copied from setup.py
11
+ # Copied from pyproject.toml
12
12
PYTHON_REQUIRES = (3 , 8 )
13
13
14
14
You can’t perform that action at this time.
0 commit comments