File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
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 : v3.3 .0
3
+ rev : v3.4 .0
4
4
hooks :
5
5
- id : check-added-large-files
6
6
args : ['--maxkb=25']
10
10
- id : debug-statements
11
11
- id : end-of-file-fixer
12
12
- repo : https://github.com/pre-commit/pygrep-hooks
13
- rev : v1.7.0
13
+ rev : v1.7.1
14
14
hooks :
15
15
- id : python-check-blanket-noqa
16
16
- id : python-check-mock-methods
@@ -22,20 +22,20 @@ repos:
22
22
- id : rst-inline-touching-normal
23
23
- id : text-unicode-replacement-char
24
24
- repo : https://github.com/asottile/pyupgrade
25
- rev : v2.7.3
25
+ rev : v2.10.0
26
26
hooks :
27
27
- id : pyupgrade
28
28
args : [--py36-plus]
29
29
- repo : https://github.com/asottile/reorder_python_imports
30
- rev : v2.3.6
30
+ rev : v2.4.0
31
31
hooks :
32
32
- id : reorder-python-imports
33
33
- repo : https://github.com/psf/black
34
34
rev : 20.8b1
35
35
hooks :
36
36
- id : black
37
37
- repo : https://github.com/asottile/blacken-docs
38
- rev : v1.8.0
38
+ rev : v1.9.2
39
39
hooks :
40
40
- id : blacken-docs
41
41
additional_dependencies : [black]
@@ -63,12 +63,12 @@ repos:
63
63
hooks :
64
64
- id : doc8
65
65
- repo : https://github.com/econchick/interrogate
66
- rev : 1.3.1
66
+ rev : 1.3.2
67
67
hooks :
68
68
- id : interrogate
69
69
args : [-v, --fail-under=40, src, tests]
70
70
- repo : https://github.com/codespell-project/codespell
71
- rev : v1.17.1
71
+ rev : v2.0.0
72
72
hooks :
73
73
- id : codespell
74
74
args : [-L=bringin]
Original file line number Diff line number Diff line change @@ -92,7 +92,11 @@ def test_includegraphics(tmp_path, image_ext):
92
92
"""
93
93
if image_ext == ".ps" :
94
94
pytest .xfail (
95
- ".ps does not work with latexmk: https://tex.stackexchange.com/a/67904"
95
+ ".ps does not work with latexmk: https://tex.stackexchange.com/a/67904."
96
+ )
97
+ if image_ext == ".eps" :
98
+ pytest .xfail (
99
+ ".eps maybe needs \\ graphicspath: https://tex.stackexchange.com/a/98886."
96
100
)
97
101
98
102
source = """
You can’t perform that action at this time.
0 commit comments