summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 3d7fc04..d4808d6 100644
--- a/setup.py
+++ b/setup.py
@@ -41,10 +41,10 @@ class BuildExt(build_ext):
try:
ext.sources = list(map(ensure_source, ext.sources))
except NoCython:
- print "WARNING"
- print "Cython is required for building extension from checkout."
- print "Install Cython >= 0.16 or install msgpack from PyPI."
- print "Falling back to pure Python implementation."
+ print("WARNING")
+ print("Cython is required for building extension from checkout.")
+ print("Install Cython >= 0.16 or install msgpack from PyPI.")
+ print("Falling back to pure Python implementation.")
return
return build_ext.build_extension(self, ext)