From 80224221a4cffcef965c7157330f9bb111e1f736 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 2 Jul 2022 21:53:38 +0200 Subject: [PATCH] ci: update python images to 3.10 --- .drone.jsonnet | 4 ++-- .drone.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index a4bffd4..38334f9 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 e920a51..96c0f42 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 @@ -182,6 +182,6 @@ depends_on: --- kind: signature -hmac: 4655b4295ee2d3db98c2cf0edaafcaec8491ceb6052b0f64733c29afa2bfcb33 +hmac: 04d1b3ab9286575b4436dba8f487264cf27f74f3a8441f31862d2405be509230 ...