From 1e26bc442aa8e36c1617fbbdaf3c7b1ade6a83af Mon Sep 17 00:00:00 2001 From: Venu Vardhan Reddy Tekula Date: Tue, 6 Apr 2021 22:14:07 +0530 Subject: [PATCH] [poetry] Add setuptools to the build-system This commit adds the setuptools version to the poetry setup configurations. This is needed to fix the 'No module named "setuptools"' bug. https://github.com/chaoss/grimoirelab-perceval/issues/720 --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9c486c4..9d04db8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,5 +44,8 @@ python-dateutil = "^2.8.0" [tool.poetry.dev-dependencies] [build-system] -requires = ["poetry>=0.12"] +requires = [ + "poetry>=0.12", + "setuptools>=30.3.0,<50" +] build-backend = "poetry.masonry.api"