Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.ip.flandmark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.ip.flandmark
Commits
6cdb16ff
"README.md" did not exist on "ffb629431e35c6c4d110a4a16bb068cb43e4e235"
Commit
6cdb16ff
authored
10 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Now uses our own build_ext (removes compiler warnings).
parent
5fc87917
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+1
-2
1 addition, 2 deletions
.travis.yml
setup.py
+6
-2
6 additions, 2 deletions
setup.py
with
7 additions
and
4 deletions
.travis.yml
+
1
−
2
View file @
6cdb16ff
...
...
@@ -18,10 +18,9 @@ before_install:
-
sudo apt-get install -qq --force-yes libboost-all-dev libblitz1-dev libhdf5-serial-dev
-
sudo apt-get install -qq --force-yes libjpeg8-dev libnetpbm10-dev libpng12-dev libtiff4-dev libgif-dev
-
sudo apt-get install -qq --force-yes python-opencv libcv-dev libcvaux-dev libopencv-dev
-
sudo apt-get install -qq --force-yes python-matplotlib
-
if [ -n "${NUMPYSPEC}" ]; then sudo apt-get install -qq --force-yes 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 matplotlib
; fi
-
if [ -n "${NUMPYSPEC}" ]; then pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel numpy$NUMPYSPEC
matplotlib==1.3.0 sphinx nose==1.3.0 jinja2==2.6
; fi
-
pip install cpp-coveralls
install
:
-
python bootstrap.py
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
6
−
2
View file @
6cdb16ff
...
...
@@ -10,7 +10,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
version
=
'
2.0.0a0
'
...
...
@@ -73,8 +73,12 @@ setup(
),
],
cmdclass
=
{
'
build_ext
'
:
build_ext
},
classifiers
=
[
'
Development Status ::
5
-
Production/Stable
'
,
'
Development Status ::
4
-
Beta
'
,
'
Intended Audience :: Developers
'
,
'
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
'
,
'
Natural Language :: English
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment