From e20bba8d91ffe450a855e4e75612bc6683327a36 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 25 Jul 2023 16:26:37 +0200 Subject: Don't fail on weird pip warning We got a `DeprecationWarning` during the package build, which we were not able to reproduce locally. For now we just don't turn this particular `DeprecationWarning` into an exception to not fail CI. --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 83cf8fb1d..4f5bd56e7 100644 --- a/tox.ini +++ b/tox.ini @@ -284,8 +284,7 @@ commands = [testenv:package] basepython = {env:PYTHON:python3} setenv = - PYTHONWARNINGS=error - VIRTUALENV_PIP=23.2 + PYTHONWARNINGS=error,default:pkg_resources is deprecated as an API.:DeprecationWarning deps = -r{toxinidir}/requirements.txt -r{toxinidir}/misc/requirements/requirements-dev.txt -- cgit v1.2.3-54-g00ecf