From cd2231fead0eb179d4b3134bafac3ce30bf22395 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Tue, 29 Oct 2019 02:21:21 -0400 Subject: [PATCH] Backport PR #15556: Fix test suite compat with ghostscript 9.50. --- lib/matplotlib/testing/compare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/testing/compare.py b/lib/matplotlib/testing/compare.py index 81bc56df4494..022923d67ad0 100644 --- a/lib/matplotlib/testing/compare.py +++ b/lib/matplotlib/testing/compare.py @@ -130,7 +130,7 @@ def __call__(self, orig, dest): if not self._proc: self._proc = subprocess.Popen( [mpl._get_executable_info("gs").executable, - "-dNOPAUSE", "-sDEVICE=png16m"], + "-dNOSAFER", "-dNOPAUSE", "-sDEVICE=png16m"], # As far as I can see, ghostscript never outputs to stderr. stdin=subprocess.PIPE, stdout=subprocess.PIPE) try: