From: Philip Jenvey Date: Sat, 23 Apr 2011 02:38:39 +0000 (-0700) Subject: might as well explicitly disable the cext on Jython too X-Git-Tag: rel_0_7_0~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b8fb2902b03849e983d4b20e27b5f302df3b1b3;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git might as well explicitly disable the cext on Jython too --- diff --git a/setup.py b/setup.py index ff82bc4553..18513fd82d 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ except ImportError: cmdclass = {} pypy = hasattr(sys, 'pypy_version_info') +jython = sys.platform.startswith('java') py3k = False extra = {} if sys.version_info < (2, 4): @@ -264,7 +265,7 @@ def run_setup(with_cext): **kwargs ) -if pypy or py3k: +if pypy or jython or py3k: run_setup(False) status_msgs( "WARNING: C extensions are not supported on " +