From f32e151b47a5621692796933cd7adcc930a91701 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 15 Jan 2017 09:33:50 -0600 Subject: [PATCH] Fix up GitLab CI runners PyLint does not yet support 3.6 [1] and the dogfood environment really shouldn't be pinning to a specific version of Python 3. [1]: https://github.com/PyCQA/pylint/issues/1241 --- .gitlab-ci.yml | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7446263..e840d40 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,6 +24,7 @@ python3: script: tox --skip-missing-interpreters -e py34,py35 linters: + image: python:3.5 stage: test script: tox -e linters diff --git a/tox.ini b/tox.ini index 34f90ca..88b59ba 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ commands = {posargs} # Dogfood our current mastera version [testenv:dogfood] -basepython = python3.5 +basepython = python3 skip_install = true deps = wheel