File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Non-typed (and private) modules/functions
2
2
matplotlib\.backends\..*
3
3
matplotlib\.tests(\..*)?
4
- matplotlib\.pylab\..*
4
+ matplotlib\.pylab( \..*)?
5
5
matplotlib\._.*
6
6
matplotlib\.rcsetup\._listify_validator
7
7
matplotlib\.rcsetup\._validate_linestyle
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ enable_incomplete_feature = [
222
222
]
223
223
exclude = [
224
224
# stubtest
225
- " .*/matplotlib/(sphinxext|backends|testing/jpl_units)" ,
225
+ " .*/matplotlib/(sphinxext|backends|pylab| testing/jpl_units)" ,
226
226
# mypy precommit
227
227
" galleries/" ,
228
228
" doc/" ,
@@ -234,7 +234,9 @@ exclude = [
234
234
" lib/matplotlib/tests/" ,
235
235
# tinypages is used for testing the sphinx ext,
236
236
# stubtest will import and run, opening a figure if not excluded
237
- " .*/tinypages"
237
+ " .*/tinypages" ,
238
+ # pylab's numpy wildcard imports cause re-def failures since numpy 2.2
239
+ " lib/matplotlib/pylab.py" ,
238
240
]
239
241
files = [
240
242
" lib/matplotlib" ,
You can’t perform that action at this time.
0 commit comments