2019-05-31 05:44:54 +00:00
|
|
|
From c11c024a8355b542101c4ed2089919e1a95cbaed Mon Sep 17 00:00:00 2001
|
2017-10-15 22:16:56 +00:00
|
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
|
|
Date: Wed, 27 Sep 2017 19:35:59 -0400
|
2019-05-31 05:44:54 +00:00
|
|
|
Subject: [PATCH 1/4] matplotlibrc path search fix
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
|
|
---
|
2019-05-31 05:44:54 +00:00
|
|
|
lib/matplotlib/__init__.py | 19 ++++---------------
|
|
|
|
lib/matplotlib/tests/test_rcparams.py | 18 ++++++++++++------
|
|
|
|
2 files changed, 16 insertions(+), 21 deletions(-)
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 350d4c554..66f60a4f9 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/__init__.py
|
|
|
|
+++ b/lib/matplotlib/__init__.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -623,18 +623,8 @@ def _get_data_path():
|
2014-01-28 16:50:22 +00:00
|
|
|
return path
|
|
|
|
|
2018-08-17 21:37:11 +00:00
|
|
|
def get_candidate_paths():
|
|
|
|
- yield Path(__file__).with_name('mpl-data')
|
2019-05-31 05:44:54 +00:00
|
|
|
- # setuptools' namespace_packages may hijack this init file
|
2018-08-17 21:37:11 +00:00
|
|
|
- # so need to try something known to be in Matplotlib, not basemap.
|
|
|
|
- import matplotlib.afm
|
|
|
|
- yield Path(matplotlib.afm.__file__).with_name('mpl-data')
|
|
|
|
- # py2exe zips pure python, so still need special check.
|
|
|
|
- if getattr(sys, 'frozen', None):
|
|
|
|
- yield Path(sys.executable).with_name('mpl-data')
|
|
|
|
- # Try again assuming we need to step up one more directory.
|
|
|
|
- yield Path(sys.executable).parent.with_name('mpl-data')
|
|
|
|
- # Try again assuming sys.path[0] is a dir not a exe.
|
|
|
|
- yield Path(sys.path[0]) / 'mpl-data'
|
2019-05-31 05:44:54 +00:00
|
|
|
+ yield (Path(__file__).parent.parent.parent.parent.parent /
|
|
|
|
+ 'share/matplotlib/mpl-data')
|
2018-08-17 21:37:11 +00:00
|
|
|
|
|
|
|
for path in get_candidate_paths():
|
|
|
|
if path.is_dir():
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -677,8 +667,7 @@ def matplotlib_fname():
|
|
|
|
is not defined)
|
|
|
|
- On other platforms,
|
|
|
|
- ``$HOME/.matplotlib/matplotlibrc`` if ``$HOME`` is defined
|
|
|
|
- - Lastly, it looks in ``$MATPLOTLIBDATA/matplotlibrc``, which should always
|
|
|
|
- exist.
|
|
|
|
+ - Lastly, it looks in ``/etc/matplotlibrc``, which should always exist.
|
2018-03-31 07:28:44 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def gen_candidates():
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -691,7 +680,7 @@ def matplotlib_fname():
|
2017-09-27 05:29:13 +00:00
|
|
|
yield matplotlibrc
|
|
|
|
yield os.path.join(matplotlibrc, 'matplotlibrc')
|
2018-08-17 21:37:11 +00:00
|
|
|
yield os.path.join(get_configdir(), 'matplotlibrc')
|
2017-09-27 05:29:13 +00:00
|
|
|
- yield os.path.join(get_data_path(), 'matplotlibrc')
|
|
|
|
+ yield '/etc/matplotlibrc'
|
2014-01-28 16:50:22 +00:00
|
|
|
|
2017-09-27 05:29:13 +00:00
|
|
|
for fname in gen_candidates():
|
2019-05-31 05:44:54 +00:00
|
|
|
if os.path.exists(fname) and not os.path.isdir(fname):
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_rcparams.py b/lib/matplotlib/tests/test_rcparams.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 123ffe4ae..b5a490855 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_rcparams.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_rcparams.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -1,6 +1,7 @@
|
|
|
|
from collections import OrderedDict
|
|
|
|
import copy
|
|
|
|
import os
|
|
|
|
+from pathlib import Path
|
|
|
|
from unittest import mock
|
|
|
|
import warnings
|
|
|
|
|
|
|
|
@@ -436,11 +437,17 @@ def test_rcparams_reset_after_fail():
|
2018-03-31 07:28:44 +00:00
|
|
|
assert mpl.rcParams['text.usetex'] is False
|
|
|
|
|
|
|
|
|
|
|
|
-def test_if_rctemplate_is_up_to_date():
|
|
|
|
+@pytest.fixture
|
|
|
|
+def mplrc():
|
2019-05-31 05:44:54 +00:00
|
|
|
+ # This is the Fedora-specific location.
|
|
|
|
+ return (Path(__file__).parent.parent.parent.parent.parent.parent.parent /
|
|
|
|
+ 'etc/matplotlibrc')
|
2018-03-31 07:28:44 +00:00
|
|
|
+
|
|
|
|
+
|
|
|
|
+def test_if_rctemplate_is_up_to_date(mplrc):
|
2018-08-17 21:37:11 +00:00
|
|
|
# This tests if the matplotlibrc.template file contains all valid rcParams.
|
|
|
|
deprecated = {*mpl._all_deprecated, *mpl._deprecated_remain_as_none}
|
2018-08-14 01:27:10 +00:00
|
|
|
- path_to_rc = os.path.join(mpl.get_data_path(), 'matplotlibrc')
|
2018-03-31 07:28:44 +00:00
|
|
|
- with open(path_to_rc, "r") as f:
|
|
|
|
+ with open(mplrc, "r") as f:
|
|
|
|
rclines = f.readlines()
|
|
|
|
missing = {}
|
2018-08-14 01:27:10 +00:00
|
|
|
for k, v in mpl.defaultParams.items():
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -463,11 +470,10 @@ def test_if_rctemplate_is_up_to_date():
|
2018-03-31 07:28:44 +00:00
|
|
|
.format(missing.items()))
|
|
|
|
|
|
|
|
|
|
|
|
-def test_if_rctemplate_would_be_valid(tmpdir):
|
|
|
|
+def test_if_rctemplate_would_be_valid(tmpdir, mplrc):
|
|
|
|
# This tests if the matplotlibrc.template file would result in a valid
|
|
|
|
# rc file if all lines are uncommented.
|
2018-08-14 01:27:10 +00:00
|
|
|
- path_to_rc = os.path.join(mpl.get_data_path(), 'matplotlibrc')
|
2018-03-31 07:28:44 +00:00
|
|
|
- with open(path_to_rc, "r") as f:
|
|
|
|
+ with open(mplrc, "r") as f:
|
|
|
|
rclines = f.readlines()
|
|
|
|
newlines = []
|
|
|
|
for line in rclines:
|
2017-10-15 22:16:56 +00:00
|
|
|
--
|
2019-05-31 05:44:54 +00:00
|
|
|
2.21.0
|
2017-10-15 22:16:56 +00:00
|
|
|
|