diff --git a/setup.py b/setup.py index e7e54db..727d5c9 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ sys.argv.remove('--no-cython') raise ImportError() from Cython.Distutils import build_ext - print "info: Building from Cython" + print("info: Building from Cython") ext_files.append("src/pybloomfilter.pyx") kwargs['cmdclass'] = {'build_ext': build_ext} #try: @@ -40,7 +40,7 @@ if '--cython' in sys.argv: raise ext_files.append("src/pybloomfilter.c") - print "info: Building from C" + print("info: Building from C") if '--cython' in sys.argv: sys.argv.remove('--cython')