From 7a4a24cf052e08c737cbc8f471ddec63e1e730d1 Mon Sep 17 00:00:00 2001 From: Luca Date: Thu, 14 Dec 2023 01:03:35 +0100 Subject: [PATCH] ci: downgrade Python --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1a9f277..2b36c0c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ name: default steps: - name: check style - image: python:3.12-alpine + image: python:3.11-alpine commands: - pip install black isort flake8 - black --check . @@ -14,7 +14,7 @@ steps: - flake8 . - name: build - image: python:3.12-alpine + image: python:3.11-alpine commands: - pip install poetry - poetry build @@ -24,7 +24,7 @@ steps: - push - name: build and publish - image: python:3.12-alpine + image: python:3.11-alpine commands: - pip install poetry - poetry publish --build --repository git.luj0ga.de