diff options
-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 |