Matt Davis
Matt Davis
I can't remember how we handle duplicated entries on doc fragments, but IIRC (and I would hope that) the more local definition would silently "win". So probably the sanest thing...
Unless I'm misunderstanding how you want to accomplish it, that would involve a fair bit of replumbing deep in core's config support for doc fragments, which isn't going to help...
Depending on how "clever" you want to be and what Python versions you need this patched version to support, another possibility might be reimplementing your plugin's `DOCUMENTATION` attr dynamically via...
and in the spirit of @AlanCoding's "imprecise without code" comment earlier :wink:, perhaps something like : ```diff diff --git a/ansible_runner/display_callback/callback/awx_display.py b/ansible_runner/display_callback/callback/awx_display.py index 0388a9a..f2e0447 100644 --- a/ansible_runner/display_callback/callback/awx_display.py +++ b/ansible_runner/display_callback/callback/awx_display.py @@ -62,6...
There's kind of a broader theme that I'm noticing more and more: people want to augment core runtime-owned structures for non-core-runtime things. It's happening with the collections packaging mechanism as...
pyyaml maintainer here- if you're going to do this, you'll want to make sure you're statically linking libyaml in the extension build, which is a little harder under Linux than...
@mjj47 We (PyYAML team, I know nothing about who maintains the piwheels package) have been publishing `manylinux_*` aarch64 wheels with static libyaml on PyPI for the past several releases. I'm...