From b3a30bdf2b7ec050d28e95bd8bb5224a86d99489 Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Wed, 23 Feb 2022 14:30:45 +0100 Subject: [MOLECULE] Pin the markupsafe pip package in virtualenv Pinning to an older version is required by a backward incompatible change introduced in the library, details in the bug report at https://github.com/pallets/markupsafe/issues/284 Change-Id: Ia291d70e0ca734a2149ee81c6168d82e1d7d7ebe Issue-ID: OOM-2927 Signed-off-by: Bartek Grzybowski --- ansible/test/bin/install-molecule.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/test/bin/install-molecule.sh b/ansible/test/bin/install-molecule.sh index 87de8d85..d18f70f7 100755 --- a/ansible/test/bin/install-molecule.sh +++ b/ansible/test/bin/install-molecule.sh @@ -42,5 +42,5 @@ source ${VENV_PATH}/bin/activate if [ ! -z ${VIRTUAL_ENV} ]; then echo "Activated virtual env in ${VIRTUAL_ENV}" pip -q install -U pip - pip -q install molecule==3.3.0 Jinja2==2.11.3 ansible-base==2.10.8 ansible==3.2.0 docker molecule-docker==0.2.4 pytest-testinfra yamllint flake8 + pip -q install molecule==3.3.0 Jinja2==2.11.3 ansible-base==2.10.8 ansible==3.2.0 docker molecule-docker==0.2.4 pytest-testinfra yamllint flake8 markupsafe==2.0.1 fi -- cgit 1.2.3-korg