File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -13,25 +13,25 @@ repos:
13
13
- id : double-quote-string-fixer
14
14
- id : requirements-txt-fixer
15
15
- repo : https://gitlab.com/pycqa/flake8
16
- rev : 3.8.0
16
+ rev : 3.8.4
17
17
hooks :
18
18
- id : flake8
19
19
additional_dependencies : [flake8-typing-imports==1.7.0]
20
20
- repo : https://github.com/pre-commit/mirrors-autopep8
21
- rev : v1.5.2
21
+ rev : v1.5.4
22
22
hooks :
23
23
- id : autopep8
24
24
- repo : https://github.com/pre-commit/pre-commit
25
- rev : v2.4.0
25
+ rev : v2.8.2
26
26
hooks :
27
27
- id : validate_manifest
28
28
- repo : https://github.com/asottile/reorder_python_imports
29
- rev : v2.3.0
29
+ rev : v2.3.6
30
30
hooks :
31
31
- id : reorder-python-imports
32
32
args : [--py3-plus]
33
33
- repo : https://github.com/asottile/pyupgrade
34
- rev : v2.4.1
34
+ rev : v2.7.4
35
35
hooks :
36
36
- id : pyupgrade
37
37
args : [--py36-plus]
@@ -41,10 +41,10 @@ repos:
41
41
- id : add-trailing-comma
42
42
args : [--py36-plus]
43
43
- repo : https://github.com/asottile/setup-cfg-fmt
44
- rev : v1.9.0
44
+ rev : v1.15.1
45
45
hooks :
46
46
- id : setup-cfg-fmt
47
47
- repo : https://github.com/pre-commit/mirrors-mypy
48
- rev : v0.770
48
+ rev : v0.790
49
49
hooks :
50
50
- id : mypy
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def name(self) -> bytes:
36
36
37
37
return name [:m .start ()]
38
38
39
- def __lt__ (self , requirement : 'Requirement' ) -> int :
39
+ def __lt__ (self , requirement : 'Requirement' ) -> bool :
40
40
# \n means top of file comment, so always return True,
41
41
# otherwise just do a string comparison with value.
42
42
assert self .value is not None , self .value
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ classifiers =
16
16
Programming Language :: Python :: 3.6
17
17
Programming Language :: Python :: 3.7
18
18
Programming Language :: Python :: 3.8
19
+ Programming Language :: Python :: 3.9
19
20
Programming Language :: Python :: Implementation :: CPython
20
21
Programming Language :: Python :: Implementation :: PyPy
21
22
You can’t perform that action at this time.
0 commit comments