switch to python 3.8 for all pipeline steps

This commit is contained in:
Robert Kaussow 2020-04-06 22:25:47 +02:00
parent 3b23b3cc50
commit 62fcea1b2d
2 changed files with 13 additions and 13 deletions

View File

@ -25,7 +25,7 @@ local PipelineLint = {
steps: [
{
name: 'flake8',
image: 'python:3.7',
image: 'python:3.8',
environment: {
PY_COLORS: 1,
},
@ -51,7 +51,7 @@ local PipelineDeps = {
steps: [
{
name: 'pipenv',
image: 'python:3.7',
image: 'python:3.8',
environment: {
PY_COLORS: 1,
},
@ -144,7 +144,7 @@ local PipelineSecurity = {
steps: [
{
name: 'bandit',
image: 'python:3.7',
image: 'python:3.8',
environment: {
PY_COLORS: 1,
},
@ -173,7 +173,7 @@ local PipelineBuildPackage = {
steps: [
{
name: 'build',
image: 'python:3.7',
image: 'python:3.8',
environment: {
SETUPTOOLS_SCM_PRETEND_VERSION: '${DRONE_TAG##v}',
},
@ -234,7 +234,7 @@ local PipelineBuildContainer(arch='amd64') = {
steps: [
{
name: 'build',
image: 'python:3.7',
image: 'python:3.8',
commands: [
'python setup.py bdist_wheel',
],

View File

@ -8,7 +8,7 @@ platform:
steps:
- name: flake8
image: python:3.7
image: python:3.8
commands:
- pip install pipenv -qq
- pipenv --bare install --dev --keep-outdated
@ -32,7 +32,7 @@ platform:
steps:
- name: pipenv
image: python:3.7
image: python:3.8
commands:
- pip install pipenv -qq
- pipenv --bare install --keep-outdated
@ -164,7 +164,7 @@ platform:
steps:
- name: bandit
image: python:3.7
image: python:3.8
commands:
- pip install pipenv -qq
- pipenv --bare install --dev --keep-outdated
@ -191,7 +191,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py sdist bdist_wheel
environment:
@ -249,7 +249,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py bdist_wheel
environment:
@ -304,7 +304,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py bdist_wheel
environment:
@ -359,7 +359,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py bdist_wheel
environment:
@ -540,6 +540,6 @@ depends_on:
---
kind: signature
hmac: d375570b943723373904590f1138d9c8e1fc05970040ff2fd71596fa5c03d207
hmac: 8be331b316af8e1f89747bc7251c7adf724d84675732272bced3d3e45a3a3f76
...