Skip to content

Commit 376cb0c

Browse files
committed
print instead of warn when not building cython extensions
1 parent aa32835 commit 376cb0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def run_setup(extensions):
267267
[Extension('cassandra.%s' % m, ['cassandra/%s.py' % m], extra_compile_args=compile_args) for m in cython_candidates],
268268
exclude_failures=True))
269269
except ImportError:
270-
warnings.warn("Cython is not installed. Not compiling core driver files as extensions (optional).")
270+
print("Cython is not installed. Not compiling core driver files as extensions (optional).")
271271

272272
if "--no-extensions" in sys.argv:
273273
extensions = []

0 commit comments

Comments
 (0)