File tree Expand file tree Collapse file tree 3 files changed +11
-16
lines changed Expand file tree Collapse file tree 3 files changed +11
-16
lines changed Original file line number Diff line number Diff line change 2
2
# See https://pre-commit.com/hooks.html for more hooks
3
3
repos :
4
4
- repo : https://github.com/pre-commit/pre-commit-hooks
5
- rev : v4.1 .0
5
+ rev : v4.4 .0
6
6
hooks :
7
7
- id : trailing-whitespace
8
8
- id : end-of-file-fixer
9
9
- id : check-yaml
10
10
- id : check-added-large-files
11
11
- id : double-quote-string-fixer
12
12
- repo : https://github.com/PyCQA/flake8
13
- rev : 4.0.1
13
+ rev : 6.1.0
14
14
hooks :
15
15
- id : flake8
16
- - repo : https://github.com/asottile/reorder_python_imports
17
- rev : v2.7.1
16
+ - repo : https://github.com/asottile/reorder-python-imports
17
+ rev : v3.10.0
18
18
hooks :
19
19
- id : reorder-python-imports
20
20
args : [--py3-plus]
21
21
- repo : https://github.com/asottile/add-trailing-comma
22
- rev : v2.2 .1
22
+ rev : v3.0 .1
23
23
hooks :
24
24
- id : add-trailing-comma
25
25
args : [--py36-plus]
26
26
- repo : https://github.com/asottile/setup-cfg-fmt
27
- rev : v1.20 .0
27
+ rev : v2.4 .0
28
28
hooks :
29
29
- id : setup-cfg-fmt
30
30
- repo : https://github.com/pre-commit/mirrors-prettier
31
- rev : v2.5 .1
31
+ rev : v3.0 .1
32
32
hooks :
33
33
- id : prettier
Original file line number Diff line number Diff line change @@ -7,18 +7,13 @@ url = https://github.com/maxwinterstein/shfmt-py
7
7
author = Max Winterstein
8
8
9
9
license = MIT
10
- license_file = LICENSE
10
+ license_files = LICENSE
11
11
classifiers =
12
12
License :: OSI Approved :: MIT License
13
13
Programming Language :: Python :: 3
14
14
Programming Language :: Python :: 3 :: Only
15
- Programming Language :: Python :: 3.6
16
- Programming Language :: Python :: 3.7
17
- Programming Language :: Python :: 3.8
18
- Programming Language :: Python :: 3.9
19
- Programming Language :: Python :: 3.10
20
15
Programming Language :: Python :: Implementation :: CPython
21
16
Programming Language :: Python :: Implementation :: PyPy
22
17
23
18
[options]
24
- python_requires = >=3.6
19
+ python_requires = >=3.8
Original file line number Diff line number Diff line change 5
5
import stat
6
6
import sys
7
7
import urllib .request
8
- from distutils .command .build import build as orig_build
9
- from distutils .core import Command
10
8
from typing import Tuple
11
9
10
+ from distutils .command .build import build as orig_build
11
+ from distutils .core import Command
12
12
from setuptools import setup
13
13
from setuptools .command .install import install as orig_install
14
14
You can’t perform that action at this time.
0 commit comments