Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.ap
Commits
75f076a9
Commit
75f076a9
authored
Mar 22, 2014
by
André Anjos
💬
Browse files
Add Travis-CI support
parent
81e60839
Changes
5
Hide whitespace changes
Inline
Side-by-side
.travis.yml
0 → 100644
View file @
75f076a9
# After changing this file, run it through http://lint.travis-ci.org/
# Generates 4 builds, the ones for python3 will install external wheels
language
:
python
python
:
-
2.6
-
2.7
matrix
:
include
:
-
python
:
3.2
env
:
-
NUMPYSPEC===1.7.1
-
python
:
3.3
env
:
-
NUMPYSPEC===1.8.0
before_install
:
-
sudo add-apt-repository -y ppa:biometrics/bob
-
sudo apt-get update -qq
-
sudo apt-get install -qq bob-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
install
:
-
"
python
bootstrap.py"
-
"
./bin/buildout"
script
:
-
"
./bin/nosetests
-sv"
-
"
./bin/sphinx-build
-b
doctest
doc
sphinx"
-
"
./bin/sphinx-build
-b
html
doc
sphinx"
README.rst
View file @
75f076a9
...
...
@@ -2,6 +2,9 @@
..
Andre
Anjos
<
andre
.
anjos
@
idiap
.
ch
>
..
Thu
30
Jan
08
:
46
:
53
2014
CET
..
image
::
https
://
travis
-
ci
.
org
/
bioidiap
/
xbob
.
ap
.
svg
?
branch
=
master
:
target
:
https
://
travis
-
ci
.
org
/
bioidiap
/
xbob
.
ap
=============================
Python
bindings
for
bob
.
ap
=============================
...
...
buildout.cfg
View file @
75f076a9
...
...
@@ -20,9 +20,9 @@ prefixes = /idiap/group/torch5spro/nightlies/last/bob/linux-x86_64-release
/Users/andre/work/bob/b/dbg/
[sources]
xbob.extension = git
git@
github.com
:
bioidiap/xbob.extension branch=prototype
xbob.blitz = git
git@
github.com
:
bioidiap/xbob.blitz
xbob.sp = git
git@
github.com
:
bioidiap/xbob.sp
xbob.extension = git
https://
github.com
/
bioidiap/xbob.extension branch=prototype
xbob.blitz = git
https://
github.com
/
bioidiap/xbob.blitz
xbob.sp = git
https://
github.com
/
bioidiap/xbob.sp
[scripts]
recipe = xbob.buildout:scripts
doc/conf.py
View file @
75f076a9
...
...
@@ -31,7 +31,6 @@ extensions = [
'sphinx.ext.autosummary'
,
'sphinx.ext.doctest'
,
'sphinx.ext.intersphinx'
,
'matplotlib.sphinxext.plot_directive'
,
]
# The viewcode extension appeared only on Sphinx >= 1.0.0
...
...
setup.py
View file @
75f076a9
...
...
@@ -7,7 +7,7 @@ from setuptools import setup, find_packages, dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'xbob.blitz'
]))
from
xbob.blitz.extension
import
Extension
packages
=
[
'bob-ap >= 1.
3
'
]
packages
=
[
'bob-ap >= 1.
2.2
'
]
version
=
'2.0.0a0'
setup
(
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment