diff --git a/.drone.jsonnet b/.drone.jsonnet index eeb1bd8..3524804 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -24,7 +24,7 @@ local PipelineLint = { steps: [ { name: 'flake8', - image: 'python:3.7', + image: 'python:3.8', environment: { PY_COLORS: 1, }, @@ -71,7 +71,7 @@ local PipelineSecurity = { steps: [ { name: 'bandit', - image: 'python:3.7', + image: 'python:3.8', environment: { PY_COLORS: 1, }, @@ -100,7 +100,7 @@ local PipelineBuildPackage = { steps: [ { name: 'build', - image: 'python:3.7', + image: 'python:3.8', commands: [ 'python setup.py sdist bdist_wheel', ], @@ -158,7 +158,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 c045774..07ef96d 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 . @@ -64,8 +64,8 @@ steps: depends_on: - clone -- name: python38-rc-pytest - image: python:3.8-rc +- name: python38-pytest + image: python:3.8 commands: - pip install -r test-requirements.txt -qq - pip install -qq . @@ -94,7 +94,7 @@ platform: steps: - name: bandit - image: python:3.7 + image: python:3.8 commands: - pip install -r test-requirements.txt -qq - pip install -qq . @@ -121,7 +121,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py sdist bdist_wheel @@ -177,7 +177,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py bdist_wheel @@ -230,7 +230,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py bdist_wheel @@ -283,7 +283,7 @@ platform: steps: - name: build - image: python:3.7 + image: python:3.8 commands: - python setup.py bdist_wheel @@ -458,6 +458,6 @@ depends_on: --- kind: signature -hmac: 3b58fe1bfbb9628ccf96b9ffa8555eb46b1c54a763856c7c5c51ab989c22b196 +hmac: 69a8767d5aa8f3a9c4055df8c8338eebbed89d727860c893461ed71e152c0390 ...