From 376cb0c10c2a8a77eb4d7df944c18e314012aeef Mon Sep 17 00:00:00 2001 From: Adam Holmberg Date: Thu, 9 Jul 2015 12:44:49 -0500 Subject: [PATCH] print instead of warn when not building cython extensions --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5a08ab2..54527d1a 100644 --- a/setup.py +++ b/setup.py @@ -267,7 +267,7 @@ if "--no-cython" not in sys.argv: [Extension('cassandra.%s' % m, ['cassandra/%s.py' % m], extra_compile_args=compile_args) for m in cython_candidates], exclude_failures=True)) except ImportError: - warnings.warn("Cython is not installed. Not compiling core driver files as extensions (optional).") + print("Cython is not installed. Not compiling core driver files as extensions (optional).") if "--no-extensions" in sys.argv: extensions = []