From f43f3dbc3033501a63af2e6bc491a57f74476df1 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 6 Apr 2020 00:30:37 +0200 Subject: [PATCH] move pipeline steps to python 3.8 --- .drone.jsonnet | 10 +++++----- .drone.yml | 16 ++++++++-------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f88eddd..f2cfd74 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -23,7 +23,7 @@ local PipelineLint = { steps: [ { name: 'flake8', - image: 'python:3.7', + image: 'python:3.8', environment: { PY_COLORS: 1, }, @@ -53,7 +53,7 @@ local PipelineTest = { PythonVersion(pyversion='3.8'), { name: 'codecov', - image: 'python:3.7', + image: 'python:3.8', environment: { PY_COLORS: 1, CODECOV_TOKEN: { from_secret: 'codecov_token' }, @@ -89,7 +89,7 @@ local PipelineSecurity = { steps: [ { name: 'bandit', - image: 'python:3.7', + image: 'python:3.8', environment: { PY_COLORS: 1, }, @@ -118,7 +118,7 @@ local PipelineBuildPackage = { steps: [ { name: 'build', - image: 'python:3.7', + image: 'python:3.8', commands: [ 'python setup.py sdist bdist_wheel', ], @@ -176,7 +176,7 @@ local PipelineBuildContainer(arch='amd64') = { steps: [ { name: 'build', - image: 'python:3.7', + image: 'python:3.8', commands: [ 'python setup.py bdist_wheel', ], diff --git a/.drone.yml b/.drone.yml index bde9a1f..7499a38 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ platform: steps: - name: flake8 - image: python:3.7 + image: python:3.8 commands: - pip install -r test-requirements.txt -qq - pip install -qq . @@ -72,7 +72,7 @@ steps: - clone - name: codecov - image: python:3.7 + image: python:3.8 commands: - pip install codecov -qq - coverage combine .tox/py*/.coverage @@ -106,7 +106,7 @@ platform: steps: - name: bandit - image: python:3.7 + image: python:3.8 commands: - pip install -r test-requirements.txt -qq - pip install -qq . @@ -133,7 +133,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py sdist bdist_wheel @@ -189,7 +189,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py bdist_wheel @@ -242,7 +242,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py bdist_wheel @@ -295,7 +295,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py bdist_wheel @@ -470,6 +470,6 @@ depends_on: --- kind: signature -hmac: 981fa0e9653bab1b4110af5212d45e411dc3e3a6b01f1a6a534b0a1eecb36e94 +hmac: 49e423952c5576de0462f252623bc51432d24658e5c893c1534cede967b51ba3 ...