diff options
author | mattip <matti.picus@gmail.com> | 2019-12-16 22:19:55 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-12-16 22:19:55 +0200 |
commit | 28848d79f665ec2dd83e84de14542a6e0ed645a5 (patch) | |
tree | cebe025c67845055c87de07d16d4be20a571d870 /tools | |
parent | 66bfedd28d5a24d1febe97bbd43d824f865349ea (diff) | |
download | numpy-28848d79f665ec2dd83e84de14542a6e0ed645a5.tar.gz |
BLD: fix signed-unsigned comparison warning
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index 241b9d913..da9195d4d 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -155,7 +155,7 @@ if [ -n "$USE_WHEEL" ] && [ $# -eq 0 ]; then export F90='gfortran --coverage' export LDFLAGS='--coverage' fi - $PYTHON setup.py build build_src --verbose-cfg bdist_wheel + $PYTHON setup.py build --warn-error build_src --verbose-cfg bdist_wheel # Make another virtualenv to install into virtualenv --python=`which $PYTHON` venv-for-wheel . venv-for-wheel/bin/activate |