-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates matplotlib, fixes an issue related to shared libc++
- Loading branch information
Showing
6 changed files
with
34 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,38 @@ | ||
# Rename this file to setup.cfg to modify Matplotlib's | ||
# build options. | ||
|
||
[egg_info] | ||
|
||
[directories] | ||
# Uncomment to override the default basedir in setupext.py. | ||
# This can be a single directory or a comma-delimited list of directories. | ||
basedirlist = {ndk_sysroot_usr} | ||
|
||
[test] | ||
# If you plan to develop Matplotlib and run or add to the test suite, | ||
# set this to True. It will download and build a specific version of | ||
# FreeType, and then use that to build the ft2font extension. This | ||
# ensures that test images are exactly reproducible. | ||
# local_freetype = True | ||
|
||
[status] | ||
# To suppress display of the dependencies and their versions | ||
# at the top of the build log, uncomment the following line: | ||
#suppress = True | ||
# Rename this file to mplsetup.cfg to modify Matplotlib's build options. | ||
|
||
[libs] | ||
# By default, Matplotlib builds with LTO, which may be slow if you re-compile | ||
# often, and don't need the space saving/speedup. | ||
enable_lto = False | ||
# By default, Matplotlib downloads and builds its own copies of FreeType and of | ||
# Qhull. You may set the following to True to instead link against a system | ||
# FreeType/Qhull. As an exception, Matplotlib defaults to the system version | ||
# of FreeType on AIX. | ||
system_freetype = True | ||
#system_qhull = False | ||
|
||
[packages] | ||
# There are a number of subpackages of Matplotlib that are considered | ||
# optional. All except tests are installed by default, but that can | ||
# be changed here. | ||
# | ||
tests = False | ||
sample_data = False | ||
#toolkits = True | ||
# Tests for the toolkits are only automatically installed | ||
# if the tests and toolkits packages are also getting installed. | ||
toolkits_tests = False | ||
# There are a number of data subpackages from Matplotlib that are | ||
# considered optional. All except 'tests' data (meaning the baseline | ||
# image files) are installed by default, but that can be changed here. | ||
#tests = False | ||
|
||
[gui_support] | ||
# Matplotlib supports multiple GUI toolkits, including | ||
# GTK3, MacOSX, Qt4, Qt5, Tk, and WX. Support for many of | ||
# these toolkits requires AGG, the Anti-Grain Geometry library, | ||
# which is provided by Matplotlib and built by default. | ||
# | ||
# Some backends are written in pure Python, and others require | ||
# extension code to be compiled. By default, Matplotlib checks for | ||
# these GUI toolkits during installation and, if present, compiles the | ||
# required extensions to support the toolkit. | ||
# | ||
# - Tk support requires Tk development headers and Tkinter. | ||
# - Mac OSX backend requires the Cocoa headers included with XCode. | ||
# - Windowing is MS-Windows specific, and requires the "windows.h" | ||
# header. | ||
# Matplotlib supports multiple GUI toolkits, known as backends. | ||
# The MacOSX backend requires the Cocoa headers included with XCode. | ||
# You can select whether to build it by uncommenting the following line. | ||
# It is never built on Linux or Windows, regardless of the config value. | ||
# | ||
# The other GUI toolkits do not require any extension code, and can be | ||
# used as long as the libraries are installed on your system -- | ||
# therefore they are installed unconditionally. | ||
# | ||
# You can uncomment any the following lines to change this | ||
# behavior. Acceptable values are: | ||
# | ||
# True: build the extension. Exits with a warning if the | ||
# required dependencies are not available | ||
# False: do not build the extension | ||
# auto: build if the required dependencies are available, | ||
# otherwise skip silently. This is the default | ||
# behavior | ||
# | ||
agg = True | ||
cairo = False | ||
gtk3agg = False | ||
gtk3cairo = False | ||
macosx = False | ||
pyside = False | ||
qt4agg = False | ||
tkagg = False | ||
windowing = False | ||
wxagg = False | ||
|
||
[rc_options] | ||
# User-configurable options | ||
# | ||
# Default backend, one of: Agg, Cairo, GTK3Agg, GTK3Cairo, MacOSX, Pdf, Ps, | ||
# Qt4Agg, Qt5Agg, SVG, TkAgg, WX, WXAgg. | ||
# Default backend, one of: Agg, Cairo, GTK3Agg, GTK3Cairo, GTK4Agg, GTK4Cairo, | ||
# MacOSX, Pdf, Ps, QtAgg, QtCairo, SVG, TkAgg, WX, WXAgg. | ||
# | ||
# The Agg, Ps, Pdf and SVG backends do not require external dependencies. Do | ||
# not choose MacOSX, or TkAgg if you have disabled the relevant extension | ||
# modules. Agg will be used by default. | ||
# | ||
backend = Agg | ||
# | ||
|
||
[package_data] | ||
# Package additional files found in the lib/matplotlib directories. | ||
# The Agg, Ps, Pdf and SVG backends do not require external dependencies. Do | ||
# not choose MacOSX if you have disabled the relevant extension modules. The | ||
# default is determined by fallback. | ||
# | ||
# On Windows, package DLL files. | ||
#dlls = True | ||
#backend = Agg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters