File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,6 @@ matplotlib.figure.Figure.set_constrained_layout
35
35
matplotlib.figure.Figure.set_constrained_layout_pads
36
36
matplotlib.figure.Figure.set_tight_layout
37
37
38
- # positional-only argument name lacking leading underscores
39
- matplotlib.axes._base._AxesBase.axis
40
-
41
38
# Maybe should be abstractmethods, required for subclasses, stubs define once
42
39
matplotlib.tri.*TriInterpolator.__call__
43
40
matplotlib.tri.*TriInterpolator.gradient
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ python_sources = [
2
2
' __init__.py' ,
3
3
' conftest.py' ,
4
4
' test_afm.py' ,
5
- ' test_agg_filter.py' ,
6
5
' test_agg.py' ,
6
+ ' test_agg_filter.py' ,
7
7
' test_animation.py' ,
8
8
' test_api.py' ,
9
9
' test_arrow_patches.py' ,
@@ -13,20 +13,23 @@ python_sources = [
13
13
' test_backend_bases.py' ,
14
14
' test_backend_cairo.py' ,
15
15
' test_backend_gtk3.py' ,
16
+ ' test_backend_inline.py' ,
16
17
' test_backend_macosx.py' ,
17
18
' test_backend_nbagg.py' ,
18
19
' test_backend_pdf.py' ,
19
20
' test_backend_pgf.py' ,
20
21
' test_backend_ps.py' ,
21
22
' test_backend_qt.py' ,
22
- ' test_backends_interactive .py' ,
23
+ ' test_backend_registry .py' ,
23
24
' test_backend_svg.py' ,
24
25
' test_backend_template.py' ,
25
26
' test_backend_tk.py' ,
26
27
' test_backend_tools.py' ,
27
28
' test_backend_webagg.py' ,
29
+ ' test_backends_interactive.py' ,
28
30
' test_basic.py' ,
29
31
' test_bbox_tight.py' ,
32
+ ' test_bezier.py' ,
30
33
' test_category.py' ,
31
34
' test_cbook.py' ,
32
35
' test_collections.py' ,
@@ -43,8 +46,8 @@ python_sources = [
43
46
' test_doc.py' ,
44
47
' test_dviread.py' ,
45
48
' test_figure.py' ,
46
- ' test_fontconfig_pattern.py' ,
47
49
' test_font_manager.py' ,
50
+ ' test_fontconfig_pattern.py' ,
48
51
' test_ft2font.py' ,
49
52
' test_getattr.py' ,
50
53
' test_gridspec.py' ,
@@ -57,8 +60,8 @@ python_sources = [
57
60
' test_mlab.py' ,
58
61
' test_offsetbox.py' ,
59
62
' test_patches.py' ,
60
- ' test_patheffects.py' ,
61
63
' test_path.py' ,
64
+ ' test_patheffects.py' ,
62
65
' test_pickle.py' ,
63
66
' test_png.py' ,
64
67
' test_polar.py' ,
@@ -78,8 +81,8 @@ python_sources = [
78
81
' test_table.py' ,
79
82
' test_testing.py' ,
80
83
' test_texmanager.py' ,
81
- ' test_textpath.py' ,
82
84
' test_text.py' ,
85
+ ' test_textpath.py' ,
83
86
' test_ticker.py' ,
84
87
' test_tightlayout.py' ,
85
88
' test_transforms.py' ,
Original file line number Diff line number Diff line change 1
1
# Extra pip requirements for the GitHub Actions mypy build
2
2
3
- mypy==1.1.1
4
- typing-extensions>=4.1,<5
3
+ mypy>=1.9
4
+ typing-extensions>=4.1
5
5
6
6
# Extra stubs distributed separately from the main pypi package
7
7
pandas-stubs
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ setenv =
14
14
PIP_ISOLATED = 1
15
15
usedevelop = True
16
16
commands =
17
- pytest --pyargs matplotlib {posargs}
17
+ pytest --pyargs matplotlib.tests {posargs}
18
18
deps =
19
19
pytest
20
20
You can’t perform that action at this time.
0 commit comments