Skip to content

Commit f833103

Browse files
authored
BLD: more quiet in the build (#18886)
1 parent ac8ac15 commit f833103

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci/install_travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ if [ "$PIP_BUILD_TEST" ]; then
175175
echo "[building release]"
176176
bash scripts/build_dist_for_release.sh
177177
conda uninstall -y cython
178-
time pip install dist/*tar.gz || exit 1
178+
time pip install dist/*tar.gz --quiet || exit 1
179179

180180
elif [ "$CONDA_BUILD_TEST" ]; then
181181

scripts/build_dist_for_release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# this builds the release cleanly & is building on the current checkout
66
rm -rf dist
77
git clean -xfd
8-
python setup.py clean
9-
python setup.py cython
10-
python setup.py sdist --formats=gztar
8+
python setup.py clean --quiet
9+
python setup.py cython --quiet
10+
python setup.py sdist --formats=gztar --quiet

0 commit comments

Comments
 (0)