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.
1 parent 22920ba commit 1951b19Copy full SHA for 1951b19
setup.py
@@ -46,7 +46,12 @@ def build_extension(self, ext):
46
print("Install Cython >= 0.16 or install msgpack from PyPI.")
47
print("Falling back to pure Python implementation.")
48
return
49
- return build_ext.build_extension(self, ext)
+ try:
50
+ return build_ext.build_extension(self, ext)
51
+ except Exception as e:
52
+ print("WARNING: Failed to compile extensiom modules.")
53
+ print("msgpack uses fallback pure python implementation.")
54
+ print(e)
55
56
57
exec(open('msgpack/_version.py').read())
0 commit comments