summaryrefslogtreecommitdiff
path: root/tools/travis-test.sh
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-09-01 17:37:24 -0600
committerCharles Harris <charlesr.harris@gmail.com>2018-09-01 22:50:19 -0600
commit10d47df635902339b526220a893421c83da6c896 (patch)
tree52368da8ca9c2035f4004112fac75495ced18f44 /tools/travis-test.sh
parent4fc43793c73bfc50bedab979b6754843305d108c (diff)
downloadnumpy-10d47df635902339b526220a893421c83da6c896.tar.gz
TST: Drop Python 3.4 testing
* Drop Python 3.4 testing on travis and appveyor. * Move the DEBUG build to 3.5. * Document dropping 3.4 support in the release notes.
Diffstat (limited to 'tools/travis-test.sh')
-rwxr-xr-xtools/travis-test.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh
index 97b192813..d95805cee 100755
--- a/tools/travis-test.sh
+++ b/tools/travis-test.sh
@@ -46,6 +46,8 @@ setup_base()
if [ -z "$USE_DEBUG" ]; then
$PIP install -v . 2>&1 | tee log
else
+ # Python3.5-dbg on travis seems to need this
+ export CFLAGS=$CFLAGS" -Wno-maybe-uninitialized"
$PYTHON setup.py build_ext --inplace 2>&1 | tee log
fi
grep -v "_configtest" log \