From e5b37d97561d95b0d8ccdcb14cab1f282cac37bb Mon Sep 17 00:00:00 2001 From: Sergey <6213510+sshnaidm@users.noreply.github.com> Date: Tue, 30 May 2023 14:34:15 +0300 Subject: [PATCH] CI: fix pip installation of the collection (#592) https://github.com/pypa/setuptools/issues/3197 latest release of setuptools 61.0 broke pip install Signed-off-by: Sagi Shnaidman --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d6d2ea1..c453a91 100644 --- a/setup.py +++ b/setup.py @@ -5,4 +5,5 @@ import setuptools setuptools.setup( setup_requires=['pbr'], - pbr=True) + pbr=True, + py_modules=[])