update pipelines and docker base image to python3.9

This commit is contained in:
Robert Kaussow 2020-11-12 20:58:42 +01:00
parent 0614e91136
commit a167b2fb61
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
1 changed files with 5 additions and 4 deletions

View File

@ -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',
],