8000 Backport PR #25092: Fix distribution of test data · matplotlib/matplotlib@3436c3b · GitHub
[go: up one dir, main page]

Skip to content

Commit 3436c3b

Browse files
ksundenmeeseeksmachine
authored andcommitted
Backport PR #25092: Fix distribution of test data
1 parent def180d commit 3436c3b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setupext.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -495,12 +495,12 @@ def get_package_data(self):
495495
'tests/test_*.ipynb',
496496
],
497497
'mpl_toolkits': [
498-
*_pkg_data_helper('mpl_toolkits/axes_grid1',
499-
'tests/baseline_images'),
500-
*_pkg_data_helper('mpl_toolkits/axisartist'
501-
'tests/baseline_images'),
502-
*_pkg_data_helper('mpl_toolkits/mplot3d'
503-
'tests/baseline_images'),
498+
*_pkg_data_helper('mpl_toolkits',
499+
'axes_grid1/tests/baseline_images'),
500+
*_pkg_data_helper('mpl_toolkits',
501+
'axisartist/tests/baseline_images'),
502+
*_pkg_data_helper('mpl_toolkits',
503+
'mplot3d/tests/baseline_images'),
504504
]
505505
}
506506

0 commit comments

Comments
 (0)
0