diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index fe5d5f2..decd6e8 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -7,16 +7,16 @@ when: matrix: PYTHON_VERSION: - - docker.io/library/python:3.7 - - 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.7" + - "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