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

View File

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