We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8ac15 commit f833103Copy full SHA for f833103
ci/install_travis.sh
@@ -175,7 +175,7 @@ if [ "$PIP_BUILD_TEST" ]; then
175
echo "[building release]"
176
bash scripts/build_dist_for_release.sh
177
conda uninstall -y cython
178
- time pip install dist/*tar.gz || exit 1
+ time pip install dist/*tar.gz --quiet || exit 1
179
180
elif [ "$CONDA_BUILD_TEST" ]; then
181
scripts/build_dist_for_release.sh
@@ -5,6 +5,6 @@
5
# this builds the release cleanly & is building on the current checkout
6
rm -rf dist
7
git clean -xfd
8
-python setup.py clean
9
-python setup.py cython
10
-python setup.py sdist --formats=gztar
+python setup.py clean --quiet
+python setup.py cython --quiet
+python setup.py sdist --formats=gztar --quiet
0 commit comments