Disable setuptools auto discovery

Jobs are broken due to a release of setuptools 61.0 introducing
non-backwards compatible breaking changes [1]

Setting py_modules to an empty string here will disable autodiscovery
and should permit jobs to run as before.

[1] https://github.com/pypa/setuptools/issues/3197

Signed-off-by: Neil Hanlon <neil@shrug.pw>
Change-Id: I64c2850b6a414c68277270952676518aa7aaa85b
This commit is contained in:
Neil Hanlon 2022-03-28 10:45:05 -04:00
parent 5da5356b43
commit 52acfb2c81
No known key found for this signature in database
GPG Key ID: 705BC21EC3C70F34
1 changed files with 1 additions and 0 deletions

View File

@ -17,4 +17,5 @@ import setuptools
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
py_modules=[],
pbr=True)