From e677320f9b4c5ea77b38d5dda32365345bf268cd Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Wed, 22 Jan 2025 10:27:01 +0100 Subject: [PATCH] Install setuptools for molecule venv Setuptools is being relied by some modules and distutils are expected to be present in ansible venv. In case of molecule - this venv is provisioned by tox, meaning we should be adding a requirement to test-requirements. Change-Id: If90b91404b9d12fc0c6c93460fc059afc6581739 --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index a9890e532f..368839e3b5 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -17,3 +17,4 @@ ansible-core==2.17.5 # GPL-3.0 docker>=7.0.0 # Apache-2.0 molecule==24.12.0 # MIT molecule-plugins[docker]==23.6.0 # MIT +setuptools>75.0.0 # MIT