Disable auto discovery as a workaround

Tripleo-ci jobs are broken after latest release of setuptools 61.0,
details in Releated-Bug.

Trying the workaround as mentioned in [1]

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

Releated-Bug: #1966382
Change-Id: I02e08ab6225a1bdc897cdebda25365fc4865c716
This commit is contained in:
Sandeep Yadav 2022-03-25 14:01:58 +05:30
parent 5865c524f5
commit ed6b3e37e8
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@ import setuptools
__metaclass__ = type
setuptools.setup(setup_requires=["pbr"], pbr=True)
setuptools.setup(setup_requires=["pbr"], pbr=True, py_modules=[])