Skip to content

BLD: more quiet in the build #18886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 21, 2017
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