From: Robert Bradshaw Date: Sun, 17 Aug 2008 00:28:59 +0000 (-0700) Subject: Better setup.py pyximport installation X-Git-Tag: 0.9.8.1~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a91171e166feb1171938ae7009f4b036441e9434;p=cython.git Better setup.py pyximport installation --- diff --git a/Cython/Compiler/Version.py b/Cython/Compiler/Version.py index a92662a3..b9bab3d1 100644 --- a/Cython/Compiler/Version.py +++ b/Cython/Compiler/Version.py @@ -1 +1 @@ -version = '0.9.8' +version = '0.9.8.1rc1' diff --git a/setup.py b/setup.py index fa272c95..b11bc472 100644 --- a/setup.py +++ b/setup.py @@ -98,11 +98,9 @@ setup( 'Cython.Tests', 'Cython.Compiler.Tests', ], + + # pyximport + py_modules = ["pyximport/pyximport", "pyximport/pyxbuild"], + **setup_args ) - - -# Now install pyximport -os.chdir('pyximport') -os.spawnlp(os.P_WAIT, 'python', 'python', 'Setup.py', *sys.argv[1:]) -os.chdir('..')