8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cca0811 + ef72f6d commit 0575dc5Copy full SHA for 0575dc5
setupext.py
@@ -830,10 +830,13 @@ class CXX(SetupPackage):
830
def check(self):
831
if PY3:
832
# There is no version of PyCXX in the wild that will work
833
- # with Python 3.x
+ # with Python 3.x and matplotlib, since they lack support
834
+ # for the buffer object.
835
self.__class__.found_external = False
- return ("Official versions of PyCXX are not compatible with "
836
- "Python 3.x. Using local copy")
+ return ("Official versions of PyCXX are not compatible "
837
+ "with matplotlib on Python 3.x, since they lack "
838
+ "support for the buffer object. Using local "
839
+ "copy")
840
841
self.__class__.found_external = True
842
old_stdout = sys.stdout
0 commit comments