File tree Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/pre-commit/pre-commit-hooks
3
- rev : v4.0.1
3
+ rev : v4.1.0
4
4
hooks :
5
5
- id : check-added-large-files
6
6
args : ['--maxkb=25']
12
12
- id : debug-statements
13
13
- id : end-of-file-fixer
14
14
- id : fix-byte-order-marker
15
- - id : forbid-new-submodules
16
15
- id : mixed-line-ending
17
16
- id : no-commit-to-branch
18
17
args : [--branch, main]
@@ -30,29 +29,29 @@ repos:
30
29
- id : rst-inline-touching-normal
31
30
- id : text-unicode-replacement-char
32
31
- repo : https://github.com/asottile/pyupgrade
33
- rev : v2.21.2
32
+ rev : v2.31.0
34
33
hooks :
35
34
- id : pyupgrade
36
35
args : [--py36-plus]
37
36
- repo : https://github.com/asottile/reorder_python_imports
38
- rev : v2.5.0
37
+ rev : v2.7.1
39
38
hooks :
40
39
- id : reorder-python-imports
41
40
- repo : https://github.com/asottile/setup-cfg-fmt
42
- rev : v1.17 .0
41
+ rev : v1.20 .0
43
42
hooks :
44
43
- id : setup-cfg-fmt
45
44
- repo : https://github.com/psf/black
46
- rev : 21.7b0
45
+ rev : 22.1.0
47
46
hooks :
48
47
- id : black
49
48
- repo : https://github.com/asottile/blacken-docs
50
- rev : v1.10.0
49
+ rev : v1.12.1
51
50
hooks :
52
51
- id : blacken-docs
53
52
additional_dependencies : [black]
54
53
- repo : https://github.com/PyCQA/flake8
55
- rev : 3.9.2
54
+ rev : 4.0.1
56
55
hooks :
57
56
- id : flake8
58
57
types : [python]
@@ -73,11 +72,11 @@ repos:
73
72
Pygments,
74
73
]
75
74
- repo : https://github.com/PyCQA/doc8
76
- rev : 0.9.0
75
+ rev : 0.10.1
77
76
hooks :
78
77
- id : doc8
79
78
- repo : https://github.com/econchick/interrogate
80
- rev : 1.4 .0
79
+ rev : 1.5 .0
81
80
hooks :
82
81
- id : interrogate
83
82
args : [-v, --fail-under=40, src, tests]
87
86
- id : codespell
88
87
args : [-L unparseable]
89
88
- repo : https://github.com/mgedmin/check-manifest
90
- rev : " 0.46 "
89
+ rev : " 0.47 "
91
90
hooks :
92
91
- id : check-manifest
93
92
- repo : meta
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ classifiers =
19
19
Programming Language :: Python :: 3.7
20
20
Programming Language :: Python :: 3.8
21
21
Programming Language :: Python :: 3.9
22
+ Programming Language :: Python :: 3.10
22
23
project_urls =
23
24
Documentation = https://github.com/pytask-dev/pytask-stata
24
25
Github = https://github.com/pytask-dev/pytask-stata
Original file line number Diff line number Diff line change @@ -81,7 +81,9 @@ def task_run_do_file():
81
81
tmp_path .joinpath ("script.do" ).write_text (textwrap .dedent ("1 + 1" ))
82
82
83
83
# Hide Stata if available.
84
- monkeypatch .setattr ("pytask_stata.config.shutil.which" , lambda x : None )
84
+ monkeypatch .setattr (
85
+ "pytask_stata.config.shutil.which" , lambda x : None # noqa: U100
86
+ )
85
87
86
88
session = main ({"paths" : tmp_path })
87
89
You can’t perform that action at this time.
0 commit comments