From a167b2fb615831c70f17206c64754586282f5849 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 12 Nov 2020 20:58:42 +0100 Subject: [PATCH] update pipelines and docker base image to python3.9 --- .drone.jsonnet | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f4a500c..48e08ee 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -25,7 +25,7 @@ local PipelineLint = { steps: [ { name: 'flake8', - image: 'python:3.8', + image: 'python:3.9', environment: { PY_COLORS: 1, }, @@ -53,6 +53,7 @@ local PipelineTest = { PythonVersion(pyversion='3.6'), PythonVersion(pyversion='3.7'), PythonVersion(pyversion='3.8'), + PythonVersion(pyversion='3.9'), ], depends_on: [ 'lint', @@ -72,7 +73,7 @@ local PipelineSecurity = { steps: [ { name: 'bandit', - image: 'python:3.8', + image: 'python:3.9', environment: { PY_COLORS: 1, }, @@ -101,7 +102,7 @@ local PipelineBuildPackage = { steps: [ { name: 'build', - image: 'python:3.8', + image: 'python:3.9', commands: [ 'python setup.py sdist bdist_wheel', ], @@ -159,7 +160,7 @@ local PipelineBuildContainer(arch='amd64') = { steps: [ { name: 'build', - image: 'python:3.8', + image: 'python:3.9', commands: [ 'python setup.py bdist_wheel', ],