From 6fb0fccf100196153773b60f352d05d1e074901f Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Mon, 20 Aug 2018 10:57:22 +0200 Subject: [PATCH] Switch to Python 3.6 as runtime python --- Dockerfile | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4668353c..fbd6223f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.5 +FROM python:3.6 MAINTAINER Thom Wiggers LABEL description="Contains the Thaliawebsite Django application" diff --git a/tox.ini b/tox.ini index 21dd6317..6204b244 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = flake8, {py35,py36,py37}-django20, {py35,py36,py37}-django21 +envlist = flake8, {py36,py37}-django20, {py36,py37}-django21 skipsdist = True skip_missing_interpreters = True @@ -26,6 +26,7 @@ env = PIPENV_SUPPRESS_NESTED_WARNING=1 [testenv:flake8] +basepython=python36 deps= flake8 skip_install=True commands= -- GitLab