diff --git a/.ci/build_conda_dist.sh b/.ci/build_conda_dist.sh index 0cd2bd45545e0752eaef5edf3388902ee01c4598..0080377c598b543fcb0d30044ca00f9b0c54b6ec 100644 --- a/.ci/build_conda_dist.sh +++ b/.ci/build_conda_dist.sh @@ -27,3 +27,12 @@ conda build --output-folder=dist .conda # tar it up cd dist tar czf "$name"-"$version"-conda.tar.gz * +cd .. + +# Make sure package is installable +for pyver in 2.7 3.4 3.5 3.6; do + conda create -y --name "test$pyver" python=$pyver + source activate test$pyver + conda install -y -c file://`pwd`/dist fslpy + source deactivate +done diff --git a/.ci/build_pypi_dist.sh b/.ci/build_pypi_dist.sh index 3a840cb2dbe23e78e9d0b959d27ced7b0dd59243..99410dbe6f4cb9f4739633584b1730adda46c690 100644 --- a/.ci/build_pypi_dist.sh +++ b/.ci/build_pypi_dist.sh @@ -5,3 +5,29 @@ set -e pip install wheel python setup.py sdist python setup.py bdist_wheel + +# do a test install from both source and wheel +sdist=`find dist -maxdepth 1 -name *.tar.gz` +wheel=`find dist -maxdepth 1 -name *.whl` + +# pip < 10 will not install wheels +# with an invalid name. So we can +# generate builds from non-releases +# (e.g. master master branch), +# we hack the wheel file name here +# so that pip will accept it. +# +# This will no longer be necessary +# when pip 10 is available. +nwheel=`echo -n $wheel | sed -e 's/fslpy-/fslpy-0/g'` +mv $wheel $nwheel +wheel=$nwheel + +for target in $sdist $wheel; do + python -m venv test.venv + . test.venv/bin/activate + pip install --upgrade pip setuptools + pip install $target + deactivate + rm -r test.venv +done