Thanks to visit codestin.com Credit goes to github.com
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.
1 parent cca0811 commit ef72f6dCopy full SHA for ef72f6d
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