diff options
author | cclauss <cclauss@bluewin.ch> | 2018-07-23 01:32:10 +0200 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-07-22 18:32:10 -0500 |
commit | bc021e4ae3232875fbbd13cdc74348f9893ed641 (patch) | |
tree | a6fbeec5577bdde25c1e5a601672a8272ce200bd | |
parent | 35ec442fb961bb2d33cb5d9096207213c5022ec9 (diff) | |
download | numpy-bc021e4ae3232875fbbd13cdc74348f9893ed641.tar.gz |
TST: Add Python 3.7 to CI testing (#11598)
Add testing with Python 3.7 to both appveyor and travis.
-rw-r--r-- | .appveyor.yml | 10 | ||||
-rw-r--r-- | .circleci/config.yml | 2 | ||||
-rw-r--r-- | .travis.yml | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 4f4083c99..99936267a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,6 +30,11 @@ environment: PYTHON_ARCH: 32 TEST_MODE: fast + - PYTHON: C:\Python37 + PYTHON_VERSION: 3.7 + PYTHON_ARCH: 32 + TEST_MODE: fast + - PYTHON: C:\Python27-x64 PYTHON_VERSION: 2.7 PYTHON_ARCH: 64 @@ -40,6 +45,11 @@ environment: PYTHON_ARCH: 64 TEST_MODE: full + - PYTHON: C:\Python37-x64 + PYTHON_VERSION: 3.7 + PYTHON_ARCH: 64 + TEST_MODE: full + init: - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" - "ECHO \"%APPVEYOR_SCHEDULED_BUILD%\"" diff --git a/.circleci/config.yml b/.circleci/config.yml index e2eb01b04..906e96a83 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: docker: # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ - - image: circleci/python:3.6.1 + - image: circleci/python:3.6.6 working_directory: ~/repo diff --git a/.travis.yml b/.travis.yml index e428953e0..904094d47 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,9 +35,11 @@ python: - 3.4 - 3.5 - 3.6 - - 3.7-dev matrix: include: + - python: 3.7 + dist: xenial # Required for Python 3.7 + sudo: true # travis-ci/travis-ci#9069 - python: 3.6 env: USE_CHROOT=1 ARCH=i386 DIST=bionic PYTHON=3.6 sudo: true |