diff --git a/.travis.yml b/.travis.yml index cb248077b5775de491dd35eb92e5bcc9b6a8216d..1d5150ab92e8ded9ce3fda40376550910b956e52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ before_install: - sudo apt-get install -qq --force-yes python-opencv libcv-dev libcvaux-dev libopencv-dev - 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 --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 matplotlib==1.3.0 sphinx nose==1.3.0 jinja2==2.6 cpp-coveralls pygments==1.6 +- pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel matplotlib==1.3.1 sphinx nose==1.3.0 jinja2==2.6 cpp-coveralls pygments==1.6 install: - python bootstrap-buildout.py - CFLAGS=-coverage ./bin/buildout diff --git a/bob/ip/flandmark/test.py b/bob/ip/flandmark/test.py index 47651b1e838ea52424773dbe61e986e5d3981989..bed454ef0c6d9839e2d1358cd1bfcec880e1a756 100644 --- a/bob/ip/flandmark/test.py +++ b/bob/ip/flandmark/test.py @@ -68,7 +68,7 @@ def pnpoly(point, vertices): return c def is_inside(point, box, eps=1e-5): - """Calculates, using matplotlib, if a point lies inside a bounding box""" + """Calculates if a point lies inside a bounding box""" (y, x, height, width) = box #note: vertices must be organized clockwise