diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-16 11:40:02 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-03-16 12:09:45 -0600 |
commit | 3a7b0408e94dc7fb6803d5a77644141a9bdcec4d (patch) | |
tree | d7835d32e82ebe575520698d25f4e5c92522adb2 /.travis.yml | |
parent | e19e52e0934690323d666704b850dcab1f8c66bf (diff) | |
download | numpy-3a7b0408e94dc7fb6803d5a77644141a9bdcec4d.tar.gz |
TST: Change most travisci tests to Python3.6.
Python 3.6 is more current and needs more testing than it is currently
getting. This is also useful preparation for droppping 2.7.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index fca0c632d..1aa033caa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,17 +37,15 @@ python: - 3.6 matrix: include: - - python: 2.7 - env: USE_CHROOT=1 ARCH=i386 DIST=artful PYTHON=2.7 + - python: 3.6 + env: USE_CHROOT=1 ARCH=i386 DIST=artful PYTHON=3.6 sudo: true - dist: trusty addons: apt: packages: - debootstrap - python: 3.4 env: USE_DEBUG=1 - dist: trusty addons: apt: packages: @@ -57,19 +55,21 @@ matrix: - python3-dev - python3-nose - python3-setuptools - - python: 3.5 + - python: 3.6 env: USE_WHEEL=1 RUN_FULL_TESTS=1 - - python: 3.5 - env: USE_SDIST=1 - python: 2.7 + env: USE_WHEEL=1 RUN_FULL_TESTS=1 PYTHON_OPTS="-3 -OO" + - python: 3.6 + env: USE_SDIST=1 + - python: 3.6 env: - PYTHONOPTIMIZE=2 - USE_ASV=1 - - python: 2.7 - env: NPY_RELAXED_STRIDES_CHECKING=0 PYTHON_OPTS="-3 -OO" - - python: 2.7 + - python: 3.5 + env: NPY_RELAXED_STRIDES_CHECKING=0 + - python: 3.6 env: USE_WHEEL=1 NPY_RELAXED_STRIDES_DEBUG=1 - - python: 2.7 + - python: 3.6 env: - BLAS=None - LAPACK=None |