|
11 | 11 | [status] |
12 | 12 | # To suppress display of the dependencies and their versions |
13 | 13 | # at the top of the build log, uncomment the following line: |
14 | | -#suppress = True |
15 | | -# |
16 | | -# Uncomment to insert lots of diagnostic prints in extension code |
17 | | -#verbose = True |
| 14 | +#suppress = False |
18 | 15 |
|
19 | 16 | [packages] |
20 | 17 | # There are a number of subpackages of matplotlib that are considered |
21 | 18 | # optional. They are all installed by default, but they may be turned |
22 | 19 | # off here. |
23 | 20 | # |
24 | | -#tests = False |
25 | | -#sample_data = False |
26 | | -#toolkits = False |
27 | | - |
28 | | -[provide_packages] |
29 | | -# By default, matplotlib checks for a few dependencies and |
30 | | -# installs them if missing. This feature can be turned off |
31 | | -# by uncommenting the following lines. Acceptible values are: |
32 | | -# True: install, overwrite an existing installation |
33 | | -# False: do not install |
34 | | -# auto: install only if the package is unavailable. This |
35 | | -# is the default behavior |
36 | | -# |
37 | | -## Date/timezone support: |
38 | | -#pytz = False |
39 | | -#dateutil = False |
40 | | -#six = False |
| 21 | +#tests = True |
| 22 | +#sample_data = True |
| 23 | +#toolkits = True |
41 | 24 |
|
42 | 25 | [gui_support] |
43 | 26 | # Matplotlib supports multiple GUI toolkits, including Cocoa, |
|
46 | 29 | # which is provided by matplotlib and built by default. |
47 | 30 | # |
48 | 31 | # Some backends are written in pure Python, and others require |
49 | | -# extension code to be compiled. By default, matplotlib checks |
50 | | -# for these GUI toolkits during installation and, if present, |
51 | | -# compiles the required extensions to support the toolkit. GTK |
52 | | -# support requires the GTK runtime environment and PyGTK. Wx |
53 | | -# support requires wxWidgets and wxPython. Tk support requires |
54 | | -# Tk and Tkinter. The other GUI toolkits do not require any |
55 | | -# extension code, and can be used as long as the libraries are |
56 | | -# installed on your system. |
| 32 | +# extension code to be compiled. By default, matplotlib checks for |
| 33 | +# these GUI toolkits during installation and, if present, compiles the |
| 34 | +# required extensions to support the toolkit. |
| 35 | +# |
| 36 | +# - GTK 2.x support of any kind requires the GTK runtime environment |
| 37 | +# headers and PyGTK. |
| 38 | +# - Tk support requires Tk development headers and Tkinter. |
| 39 | +# - Mac OSX backend requires the Cocoa headers included with XCode. |
| 40 | +# - Windowing is MS-Windows specific, and requires the "windows.h" |
| 41 | +# header. |
| 42 | +# |
| 43 | +# The other GUI toolkits do not require any extension code, and can be |
| 44 | +# used as long as the libraries are installed on your system -- |
| 45 | +# therefore they are installed unconditionally. |
| 46 | +# |
| 47 | +# You can uncomment any the following lines to change this |
| 48 | +# behavior. Acceptible values are: |
57 | 49 | # |
58 | | -# You can uncomment any the following lines if you know you do |
59 | | -# not want to use the GUI toolkit. Acceptible values are: |
60 | 50 | # True: build the extension. Exits with a warning if the |
61 | 51 | # required dependencies are not available |
62 | 52 | # False: do not build the extension |
63 | 53 | # auto: build if the required dependencies are available, |
64 | 54 | # otherwise skip silently. This is the default |
65 | 55 | # behavior |
66 | 56 | # |
67 | | -#gtk = False |
68 | | -#gtkagg = False |
69 | | -#tkagg = False |
70 | | -#macosx = False |
71 | | -#windowing = False |
| 57 | +#gtk = auto |
| 58 | +#gtkagg = auto |
| 59 | +#tkagg = auto |
| 60 | +#macosx = auto |
| 61 | +#windowing = auto |
72 | 62 |
|
73 | 63 | [rc_options] |
74 | 64 | # User-configurable options |
|
77 | 67 | # FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg. |
78 | 68 | # |
79 | 69 | # The Agg, Ps, Pdf and SVG backends do not require external |
80 | | -# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg |
| 70 | +# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, or TkAgg |
81 | 71 | # if you have disabled the relevent extension modules. Agg will be used |
82 | 72 | # by default. |
83 | 73 | # |
|
0 commit comments