pyodide/packages/matplotlib/patches/disable_macosx_backend.patch

18 lines
463 B
Diff

This comes from #541. We let it as is in case it helps building on Mac.
diff --git a/setupext.py b/setupext.py
index e41ab98fe1..d0e26d484d 100644
--- a/setupext.py
+++ b/setupext.py
@@ -724,6 +724,7 @@ class BackendMacOSX(OptionalPackage):
name = 'macosx'
def check(self):
+ raise Skipped("MacOSX backend disabled")
if sys.platform != 'darwin':
raise Skipped("Mac OS-X only")
return super().check()
--
2.35.1