diff options
| author | Philip Jenvey <pjenvey@underboss.org> | 2011-04-22 19:38:39 -0700 |
|---|---|---|
| committer | Philip Jenvey <pjenvey@underboss.org> | 2011-04-22 19:38:39 -0700 |
| commit | 8b8fb2902b03849e983d4b20e27b5f302df3b1b3 (patch) | |
| tree | 0f136cc26bc5e2583621956f9b187abae31488e3 /setup.py | |
| parent | 7b2a76c4a3ac49997d1ef0a1a542bd2842abf7c5 (diff) | |
| download | sqlalchemy-8b8fb2902b03849e983d4b20e27b5f302df3b1b3.tar.gz | |
might as well explicitly disable the cext on Jython too
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 " + |
