File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,11 @@ repos:
46
46
- types-aiofiles
47
47
- types-requests
48
48
- pandas-stubs
49
+ - types-pillow
49
50
exclude : |
50
51
(?x)(
51
52
^build/
52
- | ^advanced/ .*/setup\.py$
53
+ | .*/setup.* \.py$
53
54
| .*/demo.py$
54
55
| .*/auto_examples/
55
56
| advanced/mathematical_optimization/examples/plot_gradient_descent\.py$
@@ -59,7 +60,11 @@ repos:
59
60
| advanced/interfacing_with_c/cython_numpy/test_cos_doubles\.py$
60
61
| advanced/interfacing_with_c/numpy_shared/test_cos_doubles\.py$
61
62
| advanced/interfacing_with_c/swig.*\.py$
63
+ | advanced/advanced_numpy/examples/myobject_test\.py$
62
64
| advanced/interfacing_with_c/numpy_shared/test_cos_doubles\.py$
65
+ | advanced/interfacing_with_c/numpy_c_api/test_cos_module_np\.py$
66
+ | intro/numpy/solutions/2_a_call_fortran\.py$
67
+ | advanced/advanced_numpy/examples/mandelplot\.py$
63
68
)
64
69
65
70
- repo : https://github.com/codespell-project/codespell
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ warn_unreachable = true
7
7
exclude = '''
8
8
(?x)(
9
9
^build/
10
- | ^advanced/ .*/setup\.py$
10
+ | .*/setup.* \.py$
11
11
| .*/demo.py$
12
12
| .*/auto_examples/
13
13
| advanced/mathematical_optimization/examples/plot_gradient_descent\.py$
@@ -17,8 +17,11 @@ exclude = '''
17
17
| advanced/interfacing_with_c/cython_numpy/test_cos_doubles\.py$
18
18
| advanced/interfacing_with_c/numpy_shared/test_cos_doubles\.py$
19
19
| advanced/interfacing_with_c/swig.*\.py$
20
+ | advanced/advanced_numpy/examples/myobject_test\.py$
20
21
| advanced/interfacing_with_c/numpy_shared/test_cos_doubles\.py$
22
+ | advanced/interfacing_with_c/numpy_c_api/test_cos_module_np\.py$
21
23
| intro/numpy/solutions/2_a_call_fortran\.py$
24
+ | advanced/advanced_numpy/examples/mandelplot\.py$
22
25
)
23
26
'''
24
27
@@ -53,6 +56,10 @@ ignore_missing_imports = true
53
56
module = " statsmodels.*"
54
57
ignore_missing_imports = true
55
58
59
+ [[tool .mypy .overrides ]]
60
+ module = " pyamg.*"
61
+ ignore_missing_imports = true
62
+
56
63
[tool .pytest .ini_options ]
57
64
minversion = " 8.2"
58
65
doctest_optionflags = " NUMBER NORMALIZE_WHITESPACE ELLIPSIS"
You can’t perform that action at this time.
0 commit comments