diff --git a/.drone.jsonnet b/.drone.jsonnet index 88d59b1..a3c2caa 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -15,7 +15,7 @@ local PipelineLinting = { }, { name: 'python-format', - image: 'python:3.9', + image: 'python:3.10', environment: { PY_COLORS: 1, }, @@ -26,7 +26,7 @@ local PipelineLinting = { }, { name: 'python-flake8', - image: 'python:3.9', + image: 'python:3.10', environment: { PY_COLORS: 1, }, diff --git a/.drone.yml b/.drone.yml index 5437232..d7f5232 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,7 @@ steps: - ansible-later - name: python-format - image: python:3.9 + image: python:3.10 commands: - pip install -qq yapf - "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)" @@ -21,7 +21,7 @@ steps: PY_COLORS: 1 - name: python-flake8 - image: python:3.9 + image: python:3.10 commands: - pip install -qq flake8 - flake8 @@ -115,6 +115,6 @@ depends_on: --- kind: signature -hmac: 8e9f50e8eabb181a6a04da2be3b491149fd9c73156d220f3de339c3fe99f3f73 +hmac: 6891f1af2343db9aeee5164756572d3f29cff393af3b471f121d7326157f2f57 ...