Files
nodepool/setup.cfg
Clark Boylan 095400cf09 Fix nodepool dependency issues
There are two nodepool dependency issues affecting our ability to run
tests and build container images. One related to IBM cloud package
dependency resolution and the other a yappi compilation problem on
aarch64.

Recent updates to IBM cloud dependencies have triggered pip dependency
resolution to go into full scan mode. Ultimately, this appears to end up
scanning old packages that don't have the required requirements.txt
content and pip dep resolution breaks due to being unable to find
transitive dependencies. (This is likely a broken package that should be
pulled from pypi). Work around this by setting our lower bounds on these
packages to the versions available on April 28, 2025.

Additionally, yappi only publishes wheels for x86_64 so when we install
yappi in our debian aarch64 containers we must compile it to produce an
installable wheel. This fails with:

  gcc: internal compiler error: Segmentation fault signal terminated program cc1

I suspect that this stopped working when Debian Bookworm 12.11 was
released on May 17, 2025 which would've updated many system level
packageson Bookworm. To workaround this for now we simply stop
installing yappi on aarch64. This will reduce our ability to debug
nodepool on that platform, but nodepool in zuul should eventually
mitigate the problems with this.

Change-Id: I2b753dbe793661ba6f29ce04961062ae97bd66b6
2025-06-13 10:46:02 -07:00

45 lines
1.2 KiB
INI

[metadata]
name = nodepool
summary = Node pool management for a distributed test infrastructure
description-file =
README.rst
author = Zuul Team
author-email = zuul-discuss@lists.zuul-ci.org
home-page = https://zuul-ci.org/
python-requires = >= 3.11
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.11
[pbr]
warnerrors = True
[entry_points]
console_scripts =
nodepool = nodepool.cmd.nodepoolcmd:main
nodepool-builder = nodepool.cmd.builder:main
nodepool-launcher = nodepool.cmd.launcher:main
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
all_files = 1
warning-is-error = 1
[extras]
nodepool_base =
yappi;platform_machine!='aarch64'
objgraph
python-logstash-async
[flake8]
# These are ignored intentionally in zuul projects;
# please don't submit patches that solely correct them or enable them.
ignore = E124,E125,E129,E402,E741,W503,W504,F824
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg