This commit is contained in:
Davis King 2018-01-17 19:12:56 -05:00
parent ae62f87f87
commit b06b829d1a
2 changed files with 6 additions and 6 deletions

View File

@ -55,6 +55,7 @@ matrix:
apt:
sources:
- ubuntu-toolchain-r-test
- virtualenv
packages:
- python3
- python3-pip

View File

@ -25,11 +25,10 @@ if [ "$VARIANT" = "python-api" ]; then
fi
if [ "$VARIANT" = "python3-api" ]; then
#python3 setup.py test --clean
#pip3 install --user numpy
#python3 setup.py test --clean
python3 setup.py build --clean
virtualenv -p python3 dlibtest
source dlibtest/bin/activate
pip3 install -U setuptools
python3 setup.py test --clean
pip3 install --user numpy
python3 setup.py build --clean
python3 setup.py test --clean
fi