fonttools/.travis/before_deploy.sh
Cosimo Lupo b48129cb9d
.travis/before_deploy.sh: no longer activate virtual env; pip install wheel
Note that we already update setuptools (for the sdist) in .travis/install.sh
2016-12-25 18:09:32 +00:00

10 lines
140 B
Bash
Executable File

#!/bin/bash
set -e
set -x
if [[ $BUILD_DIST == true ]]; then
python -m pip install --upgrade wheel
python setup.py sdist bdist_wheel
fi