Commit 0961408d authored by Stefan Behnel's avatar Stefan Behnel

merge from 0.9.6.6

parents 0c98af29 758cad74
......@@ -7,7 +7,9 @@ setup(
ext_modules=[
Extension("primes", ["primes.pyx"]),
Extension("spam", ["spam.pyx"]),
Extension("numeric_demo", ["numeric_demo.pyx"]),
# Extension("numeric_demo", ["numeric_demo.pyx"]),
Extension("test", ["test.pyx"]),
],
cmdclass = {'build_ext': build_ext}
cmdclass = {'build_ext': build_ext},
# include_dirs = "/System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/"
)
VERSION = 0.9.6
VERSION = 0.9.6.3
version:
@echo "Setting version to $(VERSION)"
......
from distutils.core import setup
from distutils.sysconfig import get_python_lib
import os, sys
import sys
from Cython.Compiler.Version import version
compiler_dir = os.path.join(get_python_lib(prefix=''), 'Cython/Compiler')
if sys.platform == "win32":
compiler_dir = compiler_dir[len(sys.prefix)+1:]
setup_args = {}
if sys.version_info < (2,4):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment