Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.image
Commits
f1574a5e
Commit
f1574a5e
authored
Sep 03, 2014
by
Manuel Günther
Browse files
Now uses our own build_ext (removes compiler warnings).
parent
c90b8a25
Changes
2
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
f1574a5e
...
...
@@ -18,7 +18,7 @@ before_install:
-
sudo apt-get install -qq --force-yes libboost-all-dev libblitz1-dev libjpeg8-dev libnetpbm10-dev libpng12-dev libtiff4-dev libgif-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
...
...
setup.py
View file @
f1574a5e
...
...
@@ -9,7 +9,7 @@ import os
from
setuptools
import
setup
,
find_packages
,
dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'bob.blitz'
]
+
bob_packages
))
from
bob.extension.utils
import
egrep
,
find_header
,
find_library
from
bob.blitz.extension
import
Extension
from
bob.blitz.extension
import
Extension
,
build_ext
packages
=
[
'boost'
,
'libpng'
]
boost_modules
=
[
'system'
]
...
...
@@ -470,6 +470,10 @@ setup(
),
],
cmdclass
=
{
'build_ext'
:
build_ext
},
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment