Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0575dc5

Browse filesBrowse files
committed
Merge pull request #3492 from mdboom/clarify-pycxx
Allow python 3 version of PyCXX
2 parents cca0811 + ef72f6d commit 0575dc5
Copy full SHA for 0575dc5

File tree

Expand file treeCollapse file tree

1 file changed

+6
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-3
lines changed
Open diff view settings
Collapse file

‎setupext.py‎

Copy file name to clipboardExpand all lines: setupext.py
+6-3Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -830,10 +830,13 @@ class CXX(SetupPackage):
830830
def check(self):
831831
if PY3:
832832
# There is no version of PyCXX in the wild that will work
833-
# with Python 3.x
833+
# with Python 3.x and matplotlib, since they lack support
834+
# for the buffer object.
834835
self.__class__.found_external = False
835-
return ("Official versions of PyCXX are not compatible with "
836-
"Python 3.x. Using local copy")
836+
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")
837840

838841
self.__class__.found_external = True
839842
old_stdout = sys.stdout

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.