[Lxml-checkins] r47636 - lxml/trunk
scoder at codespeak.net
scoder at codespeak.net
Sat Oct 20 14:44:51 CEST 2007
Author: scoder
Date: Sat Oct 20 14:44:50 2007
New Revision: 47636
Modified:
lxml/trunk/setupinfo.py
Log:
print Cython version in setup.py
Modified: lxml/trunk/setupinfo.py
==============================================================================
--- lxml/trunk/setupinfo.py (original)
+++ lxml/trunk/setupinfo.py Sat Oct 20 14:44:50 2007
@@ -3,7 +3,8 @@
try:
from Cython.Distutils import build_ext as build_pyx
- print("Building with Cython.")
+ import Cython.Compiler.Version
+ print("Building with Cython %s." % Cython.Compiler.Version.version)
CYTHON_INSTALLED = True
except ImportError:
CYTHON_INSTALLED = False
More information about the lxml-checkins
mailing list