Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/install_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ if [ "$PIP_BUILD_TEST" ]; then
echo "[building release]"
bash scripts/build_dist_for_release.sh
conda uninstall -y cython
time pip install dist/*tar.gz || exit 1
time pip install dist/*tar.gz --quiet || exit 1

elif [ "$CONDA_BUILD_TEST" ]; then

Expand Down
6 changes: 3 additions & 3 deletions scripts/build_dist_for_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# this builds the release cleanly & is building on the current checkout
rm -rf dist
git clean -xfd
python setup.py clean
python setup.py cython
python setup.py sdist --formats=gztar
python setup.py clean --quiet
python setup.py cython --quiet
python setup.py sdist --formats=gztar --quiet