From 88cbf83d29782fa3d09b353692bf4df00f7d9d4a Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 15 Jan 2017 11:23:19 -0600 Subject: [PATCH] Add Python 3.6 to CI services --- .gitlab-ci.yml | 15 +++++++++++++-- .travis.yml | 2 ++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e840d40..8f99bc3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,9 +19,20 @@ python2: stage: test script: tox -e py27 -python3: +python34: + image: python:3.4 stage: test - script: tox --skip-missing-interpreters -e py34,py35 + script: tox -e py34 + +python35: + image: python:3.5 + stage: test + script: tox -e py35 + +python36: + image: python:3.6 + stage: test + script: tox -e py36 linters: image: python:3.5 diff --git a/.travis.yml b/.travis.yml index 20c7c29..47173cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,8 @@ matrix: env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 + - python: 3.6 + env: TOXENV=py36 - python: pypy env: TOXENV=pypy - python: 2.7