From 6f929d6ded5b9d491a0958aaae56a472e4592999 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 2 Jul 2022 21:53:49 +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 856f064..2af2d3e 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 7fecdd4..a942a41 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 @@ -147,6 +147,6 @@ depends_on: --- kind: signature -hmac: 6dd17604439ac465fb58a0b9979ad2123ecdae265ceba71b99b6d48cb96955c8 +hmac: 6a4cabefb52c02318bf7a1170170de4f2fee4d52ef3c6a729543e3fd81ae6a8b ...