From ac6197d4eacf4e827850806cd3210b455671983f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 31 Oct 2024 11:07:34 +0100 Subject: [PATCH] ci: bump min python version for sanity test --- .woodpecker/sanity-test.yml | 4 ++-- .woodpecker/unit-test.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.woodpecker/sanity-test.yml b/.woodpecker/sanity-test.yml index 41cc15a..e81cc0e 100644 --- a/.woodpecker/sanity-test.yml +++ b/.woodpecker/sanity-test.yml @@ -7,14 +7,14 @@ when: variables: - &ansible_base - image: docker.io/library/python:3.10 + image: docker.io/library/python:3.11 depends_on: [] commands: - pip install poetry -qq - poetry install --all-extras --no-root - poetry run pip install https://github.com/ansible/ansible/archive/$${ANSIBLE_VERSION}.tar.gz --disable-pip-version-check - poetry run ansible --version - - poetry run ansible-test sanity --exclude .gitsv/ --exclude .woodpecker/ --python 3.10 + - poetry run ansible-test sanity --exclude .gitsv/ --exclude .woodpecker/ --python 3.11 - &ansible_env PY_COLORS: "1" diff --git a/.woodpecker/unit-test.yml b/.woodpecker/unit-test.yml index 170d289..5a10cce 100644 --- a/.woodpecker/unit-test.yml +++ b/.woodpecker/unit-test.yml @@ -16,6 +16,10 @@ variables: PY_COLORS: "1" steps: + - name: pyton-313 + image: docker.io/library/python:3.13 + <<: *pytest_base + - name: pyton-312 image: docker.io/library/python:3.12 <<: *pytest_base @@ -28,9 +32,5 @@ steps: image: docker.io/library/python:3.10 <<: *pytest_base - - name: pyton-39 - image: docker.io/library/python:3.9 - <<: *pytest_base - depends_on: - lint