python-matplotlib: update to 3.5.3

This commit is contained in:
Mehdi Chinoune
2022-08-18 13:00:56 +00:00
committed by مهدي شينون (Mehdi Chinoune)
parent 09b6f4cbba
commit 6e7ff64b24
4 changed files with 38 additions and 35 deletions

View File

@@ -8,19 +8,20 @@
def _get_xdg_cache_dir():
"""
@@ -188,9 +189,9 @@
options = {
@@ -198,10 +199,10 @@
'backend': config.get('rc_options', 'backend', fallback=None),
'system_freetype': config.getboolean(
- 'libs', 'system_freetype', fallback=sys.platform.startswith('aix')),
+ 'libs', 'system_freetype', fallback=sys.platform.startswith('aix') or MSYS),
'libs', 'system_freetype',
- fallback=sys.platform.startswith(('aix', 'os400'))
+ fallback=sys.platform.startswith(('aix', 'os400')) or MSYS
),
'system_qhull': config.getboolean(
- 'libs', 'system_qhull', fallback=False),
+ 'libs', 'system_qhull', fallback=False or MSYS),
- 'libs', 'system_qhull', fallback=sys.platform.startswith('os400')
+ 'libs', 'system_qhull', fallback=sys.platform.startswith('os400') or MSYS
),
}
@@ -213,7 +214,7 @@
@@ -225,7 +226,7 @@
"""
Get path to pkg-config and set up the PKG_CONFIG environment variable.
"""
@@ -29,7 +30,7 @@
return None
pkg_config = os.environ.get('PKG_CONFIG') or 'pkg-config'
if shutil.which(pkg_config) is None:
@@ -265,7 +266,7 @@
@@ -277,7 +278,7 @@
# conda Windows header and library paths.
# https://github.com/conda/conda/issues/2312 re: getting the env dir.