Skip to content
Snippets Groups Projects
Commit 10403cfe authored by Manuel Günther's avatar Manuel Günther
Browse files

Now uses our own build_ext (removes compiler warnings).

parent 58b4ac5f
Branches
Tags
No related merge requests found
......@@ -18,7 +18,7 @@ before_install:
- sudo apt-get install -qq --force-yes libboost-all-dev libblitz1-dev libmatio-dev libhdf5-serial-dev
- if [ -n "${NUMPYSPEC}" ]; then sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran; fi
- if [ -n "${NUMPYSPEC}" ]; then pip install --upgrade pip setuptools; fi
- if [ -n "${NUMPYSPEC}" ]; then pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel numpy$NUMPYSPEC sphinx nose; fi
- if [ -n "${NUMPYSPEC}" ]; then pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel numpy$NUMPYSPEC sphinx nose==1.3.0 jinja2==2.6; fi
- pip install cpp-coveralls
install:
- python bootstrap.py
......
......@@ -7,7 +7,7 @@ bob_packages = ['bob.core', 'bob.io.base']
from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['bob.blitz'] + bob_packages))
from bob.blitz.extension import Extension
from bob.blitz.extension import Extension, build_ext
packages = ['boost', 'matio >= 1.3.0']
boost_modules = ['system']
......@@ -66,8 +66,12 @@ setup(
),
],
cmdclass = {
'build_ext': build_ext
},
classifiers = [
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment