Skip to content

Commit

Permalink
Put travis builds on wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Guenther committed May 22, 2015
1 parent edba34e commit ba222ef
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 31 deletions.
21 changes: 10 additions & 11 deletions .travis.yml
Expand Up @@ -7,28 +7,27 @@ matrix:
- secure: Zke+cGe+yggHXoKNhR/VHDhylUumi8Hzx/y/JsPlz269ezU40hHue1xNXtJoXK9tTyoJdx54L5e+c8HgNTyDFu3/qxb4wFHll5ug5jFEYrz8WkVPvN7XOMcQrkKcVzXdoa8D2EJ82zJGURoJc1SVhxDuMphzMiOPMjzU/oslnt4=
- secure: KeYL2O8nv1MIqZ1RWn/u2puENikXjWyBg9pyG1aLRYpefBMmx3w6P1WcIXlF06dyzeUgMSCHqZAk+m+OxGCOKzqNZm/P0bBnxWlHKCME02q4g+7bQZ6jlqQM65KUJ1nSCLB0D8Iv17acaBU10h6L2qgJ1GybgvbkDWC0rhAVFVo=
- BOB_DOCUMENTATION_SERVER=https://www.idiap.ch/software/bob/docs/latest/bioidiap/%s/master
- python: 3.2
env:
- NUMPYSPEC===1.8.0
- BOB_UPLOAD_WHEEL="--universal"
- python: 3.3
env:
- NUMPYSPEC===1.8.0
- python: 3.4
before_install:
- sudo add-apt-repository -y ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq --force-yes libboost-all-dev libblitz1-dev libhdf5-serial-dev libatlas-dev libatlas-base-dev liblapack-dev texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
- if [ -n "${NUMPYSPEC}" ]; then sudo apt-get install -qq gfortran; fi
- if [ -n "${NUMPYSPEC}" ]; then pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel numpy$NUMPYSPEC; fi
- pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel sphinx nose==1.3.0 jinja2==2.6 coveralls pygments==1.6
- pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel sphinx nose numpy coverage
- pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel --pre -r requirements.txt coveralls
install:
- python bootstrap-buildout.py
- ./bin/buildout
- ./bin/buildout buildout:develop=. buildout:extensions=bob.buildout buildout:auto-checkout=
script:
- ./bin/python -c 'from bob.db.gbu import get_config; print(get_config())'
- ./bin/python -c 'import pkg_resources; from bob.db.gbu import get_config; print(get_config())'
- ./bin/bob_dbmanage.py gbu download
- ./bin/coverage run --source=bob.db.gbu ./bin/nosetests -sv
- ./bin/sphinx-build -b doctest doc sphinx
- ./bin/sphinx-build -b html doc sphinx
after_success:
- coveralls
- ./src/bob.extension/scripts/upload-sphinx.sh
- wget https://raw.githubusercontent.com/bioidiap/bob.extension/master/scripts/upload-{sphinx,wheel}.sh
- chmod a+x upload-sphinx.sh upload-wheel.sh
- ./upload-sphinx.sh
- ./upload-wheel.sh
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,3 +1,3 @@
include README.rst bootstrap-buildout.py buildout.cfg version.txt
include README.rst bootstrap-buildout.py buildout.cfg version.txt requirements.txt
recursive-include doc *.py *.rst
recursive-include bob *.sql3
13 changes: 2 additions & 11 deletions bob/db/gbu/__init__.py
Expand Up @@ -27,18 +27,9 @@
def get_config():
"""Returns a string containing the configuration information.
"""
import bob.extension
return bob.extension.get_config(__name__)

import pkg_resources

packages = pkg_resources.require(__name__)
this = packages[0]
deps = packages[1:]

retval = "%s: %s (%s)\n" % (this.key, this.version, this.location)
retval += " - python dependencies:\n"
for d in deps: retval += " - %s: %s (%s)\n" % (d.key, d.version, d.location)

return retval.strip()

# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
4 changes: 4 additions & 0 deletions requirements.txt
@@ -0,0 +1,4 @@
setuptools
six
bob.db.base
bob.db.verification.utils
13 changes: 6 additions & 7 deletions setup.py
Expand Up @@ -3,7 +3,11 @@
# Manuel Guenther <manuel.guenther@idiap.ch>
# Wed Sep 5 15:21:53 CEST 2012

from setuptools import setup, find_packages
from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['bob.extension']))

from bob.extension.utils import load_requirements
install_requires = load_requirements()

# Define package version
version = open("version.txt").read().rstrip()
Expand All @@ -26,12 +30,7 @@
include_package_data=True,
zip_safe=False,

install_requires=[
'setuptools',
'six', # py2/3 compatibility library
'bob.db.base',
'bob.db.verification.utils' # defines a set of utilities for face verification databases like this one.
],
install_requires = install_requires,

namespace_packages = [
'bob',
Expand Down
2 changes: 1 addition & 1 deletion version.txt
@@ -1 +1 @@
2.0.2b0
2.0.2b1

0 comments on commit ba222ef

Please sign in to comment.