diff --git a/.drone.jsonnet b/.drone.jsonnet index 18b1713..6703c12 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -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', ], diff --git a/.drone.yml b/.drone.yml index 2fc6934..fad9ddf 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 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 ...