Attention is currently required from: lynxis lazus. osmith has posted comments on this change by lynxis lazus. ( https://gerrit.osmocom.org/c/pysim/+/42066?usp=email )
Change subject: pySim/global_platform: replace deprecated argument group() creation ...................................................................... Patch Set 3: (1 comment) File pySim/global_platform/__init__.py: https://gerrit.osmocom.org/c/pysim/+/42066/comment/521c13db_afe48a16?usp=email : PS3, Line 868: install_cap_parser_inst_prm_g_grp = install_cap_parser.add_argument_group() I looked into the CI failure (docs): ``` File "/usr/local/lib/python3.13/dist-packages/sphinxarg/ext.py", line 96, in print_action_groups section = nodes.section(ids=[action_group['title'].replace(' ', '-').lower()]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'replace' ``` sphinxargs trips over the group not having a title for some reason, with this it works: ```py install_cap_parser_inst_prm_g_grp = install_cap_parser.add_argument_group("title") ``` upstream code: https://github.com/sphinx-doc/sphinx-argparse/blob/61b8bf0e2ffab20664acaba99e0f16e6f04e0ad0/sphinxarg/ext.py#L135 -- To view, visit https://gerrit.osmocom.org/c/pysim/+/42066?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: comment Gerrit-Project: pysim Gerrit-Branch: master Gerrit-Change-Id: I4f73d3417a12b7fe94e33a265cdae244f3c9a1e9 Gerrit-Change-Number: 42066 Gerrit-PatchSet: 3 Gerrit-Owner: lynxis lazus <[email protected]> Gerrit-Reviewer: Jenkins Builder Gerrit-CC: laforge <[email protected]> Gerrit-CC: osmith <[email protected]> Gerrit-Attention: lynxis lazus <[email protected]> Gerrit-Comment-Date: Mon, 09 Feb 2026 13:23:06 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No
