Comment 52 for bug 1966382

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to tripleo-puppet-elements (stable/train)

Reviewed: https://review.opendev.org/c/openstack/tripleo-puppet-elements/+/835795
Committed: https://opendev.org/openstack/tripleo-puppet-elements/commit/14e13efb47a4d20a1ac988254130ccc97648a441
Submitter: "Zuul (22348)"
Branch: stable/train

commit 14e13efb47a4d20a1ac988254130ccc97648a441
Author: Jiri Podivin <email address hidden>
Date: Tue Mar 29 08:57:50 2022 +0200

    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

    Signed-off-by: Jiri Podivin <email address hidden>
    Change-Id: I4cf10643a18fbc331213b5a3f3d4e4f207f49527
    (cherry picked from commit 66f8964f59342d99f7115b16ac8629382279e918)