File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 15
15
hooks :
16
16
- id : pyupgrade
17
17
args :
18
- - --py36 -plus
19
- # We need the bootstrap.py script to be parsable with Python 3.5 , so we
18
+ - --py39 -plus
19
+ # We need the bootstrap.py script to be parsable with Python 3.8 , so we
20
20
# exclude it from the pyupgrade hook that will apply f-strings etc.
21
21
exclude : bootstrap/bootstrap.py
22
22
Original file line number Diff line number Diff line change @@ -25,12 +25,10 @@ profile = "black"
25
25
# target-version should be all supported versions, see
26
26
# https://github.com/psf/black/issues/751#issuecomment-473066811
27
27
target_version = [
28
- " py36" ,
29
- " py37" ,
30
- " py38" ,
31
28
" py39" ,
32
29
" py310" ,
33
30
" py311" ,
31
+ " py312" ,
34
32
]
35
33
36
34
Original file line number Diff line number Diff line change 10
10
license = "3 Clause BSD" ,
11
11
packages = find_packages (),
12
12
include_package_data = True ,
13
+ python_requires = ">=3.9" ,
13
14
install_requires = [
14
15
"ruamel.yaml==0.18.*" ,
15
16
"jinja2" ,
You can’t perform that action at this time.
0 commit comments