From 9aba240985f904675f75947c6015855d46e32140 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 4 Nov 2023 16:18:54 +0100 Subject: [PATCH] ci: cleanup matrix build name (#591) --- .woodpecker/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 3cbc5c1..cb5458e 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -7,15 +7,15 @@ when: matrix: PYTHON_VERSION: - - docker.io/library/python:3.8 - - docker.io/library/python:3.9 - - docker.io/library/python:3.10 - - docker.io/library/python:3.11 - - docker.io/library/python:3.12 + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" steps: pytest: - image: ${PYTHON_VERSION} + image: docker.io/library/python:${PYTHON_VERSION} commands: - git fetch --depth=2147483647 - pip install poetry poetry-dynamic-versioning -qq