From 43b2ee8c8040ce40ca053145a18ca67c111fbbbd Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 8 Feb 2014 21:14:14 +0100 Subject: [PATCH] print Cython version if used for building --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 15154ca..4963f8b 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,8 @@ if USE_CYTHON: from Cython.Build import cythonize + import Cython + print("Building with Cython %s" % Cython.__version__) else: def cythonize(extensions): for extension in extensions: