From d1b6361222cc689ac4bf41e2f4db5a8a9386e23b Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 28 Sep 2016 15:31:25 +0200 Subject: [PATCH] Add package 'schema' --- install/extra-wheels.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/extra-wheels.sh b/install/extra-wheels.sh index e101d11..699fe00 100755 --- a/install/extra-wheels.sh +++ b/install/extra-wheels.sh @@ -4,6 +4,7 @@ # Set the versions here CYVLFEAT="git+https://github.com/menpo/cyvlfeat@v0.4.5" MENPO="pathlib==1.0 git+https://github.com/menpo/menpo@v0.7.3 git+https://github.com/menpo/menpofit@v0.4.1" +SCHEMA="schema" if [ "${#}" != 2 ]; then echo "usage: `basename $0` <basedir> <name>" @@ -26,3 +27,4 @@ else CFLAGS="-I${CONDA_PREFIX}/include -mmacosx-version-min=10.9" LDFLAGS="-L${CONDA_PREFIX}/lib -lvl -Wl,-headerpad_max_install_names" pip --no-cache-dir wheel --no-deps ${CYVLFEAT} fi pip --no-cache-dir wheel --no-deps ${MENPO} +pip --no-cache-dir wheel --no-deps ${SCHEMA} -- GitLab