This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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=[],..) ~~~ Depends-On added to deal with freeze issue seen in this review [1] pypa/setuptools#3197 Depends-On: https://review.opendev.org/c/openstack/tripleo-ci/+/835776 Related-Bug: #1966382 Change-Id: If1509b0369aeaee72355da4dd3a5cdd7846114bb (cherry picked from commit 0176edf)
- Loading branch information