From 997988e0a5a773c64dfddaedc2b6e7d9a83f983a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=BCnther?= Date: Tue, 12 Nov 2024 03:25:23 +0100 Subject: [PATCH] Add dependency to setuptools to fix ModuleNotFoundError for distutils in modernpython/lang_pack.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Günther --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3c4e0177..1f2f8c73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,8 @@ dependencies = [ "xmltodict >= 0.13.0, < 1", "chevron >= 0.14.0, < 1", "pydantic < 2", - "beautifulsoup4 >= 4.12.2, < 5" + "beautifulsoup4 >= 4.12.2, < 5", + "setuptools" ] requires-python = ">=3.11"