From: Aleš Mrázek Date: Thu, 9 Jul 2026 12:04:26 +0000 (+0200) Subject: .gitlab-ci.yml: python: use virtualenv <20.30 when running python 3.8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf1eb81f898d52b9ed9e09341259522e86ba4918;p=thirdparty%2Fknot-resolver.git .gitlab-ci.yml: python: use virtualenv <20.30 when running python 3.8 Use a virtualenv release that still supports seeding Python 3.8 environments. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84ca21d30..f5b3eae8f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -885,6 +885,10 @@ docs:website: stage: sanity before_script: - poetry --version + - > + if [[ "$PYTHON_VERSION" == "3.8" ]]; then + pipx inject --force poetry "virtualenv<20.30" + fi - poetry env use python${PYTHON_VERSION} - poetry env info