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=ema... : 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/61b8bf0e2ffab20664acaba99...