File tree 3 files changed +1
-20
lines changed
3 files changed +1
-20
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ license_files = LICENSE/*
21
21
# considered optional. All except 'tests' data (meaning the baseline
22
22
# image files) are installed by default, but that can be changed here.
23
23
#tests = False
24
- #sample_data = True
25
24
26
25
[gui_support]
27
26
# Matplotlib supports multiple GUI toolkits, known as backends.
Original file line number Diff line number Diff line change 61
61
setupext .Platform (),
62
62
setupext .FreeType (),
63
63
setupext .Qhull (),
64
- setupext .SampleData (),
65
64
setupext .Tests (),
66
65
setupext .BackendMacOSX (),
67
66
]
Original file line number Diff line number Diff line change @@ -365,9 +365,7 @@ def get_package_data(self):
365
365
return {
366
366
'matplotlib' : [
367
367
'mpl-data/matplotlibrc' ,
368
- * _pkg_data_helper ('matplotlib' , 'mpl-data/fonts' ),
369
- * _pkg_data_helper ('matplotlib' , 'mpl-data/images' ),
370
- * _pkg_data_helper ('matplotlib' , 'mpl-data/stylelib' ),
368
+ * _pkg_data_helper ('matplotlib' , 'mpl-data' ),
371
369
* _pkg_data_helper ('matplotlib' , 'backends/web_backend' ),
372
370
'*.dll' , # Only actually matters on Windows.
373
371
],
@@ -478,21 +476,6 @@ def get_extensions(self):
478
476
yield ext
479
477
480
478
481
- class SampleData (OptionalPackage ):
482
- """
483
- This handles the sample data that ships with matplotlib. It is
484
- technically optional, though most often will be desired.
485
- """
486
- name = "sample_data"
487
-
488
- def get_package_data (self ):
489
- return {
490
- 'matplotlib' : [
491
- * _pkg_data_helper ('matplotlib' , 'mpl-data/sample_data' ),
492
- ],
493
- }
494
-
495
-
496
479
class Tests (OptionalPackage ):
497
480
name = "tests"
498
481
default_config = False
You can’t perform that action at this time.
0 commit comments