From 47054b26512316cb61dbc443b448bfd7d28761e5 Mon Sep 17 00:00:00 2001 From: Brendan Shephard Date: Mon, 28 Mar 2022 14:46:56 +1000 Subject: [PATCH] Disable auto discovery Tripleo-ci jobs are broken after latest release of setuptools 61.0 because of breaking changes which are not backwork compatible, details in related bug and [1]. Users that don't set ``packages``, ``py_modules``, or `configuration` are still likely to observe the auto-discovery behavior, which may halt the build if the project contains multiple directories and/or multiple Python files directly under the project root. To disable auto discovery, one can do below in setup.py ~~~ setuptools.setup(..,packages=[],..) ~~~ or ~~~ setuptools.setup(..,py_modules=[],..) ~~~ [1] https://github.com/pypa/setuptools/issues/3197 Related-Bug: #1966382 Change-Id: I52f852686b70d5f5d5c387b3253134bb4ccc2766 (cherry picked from commit dab104315f5352800ec56f163f6ae12a4b8c9685) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6a931a61c..58ffb5224 100644 --- a/setup.py +++ b/setup.py @@ -16,4 +16,5 @@ import setuptools setuptools.setup( setup_requires=['pbr'], + py_modules=[], pbr=True)