Documentation
The html doc is not building with the new docutils >= 0.22. It's not a problem yet, because the current Sphinx used (sphinx~=8.2.0) doesn't install the latest one, but it's something that should be fixed for the future.
The problem can be reproduced:
$ cd Doc
$ python3 -m venv env
$ source env/bin/activate
$ pip install -r requirements.txt
$ pip install -U docutils
$ sphinx-build --pdb -b html . build/html
[...]
File "env/lib64/python3.13/site-packages/docutils/parsers/rst/states.py", line 1494, in parse_enumerator
ordinal = int(self.enum.converters[sequence](text))
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
The actual problem is directly related to this line in docutils, done as part as this commit.
They wrap the converters with int so the monkey patch done in pyspecific.py doesn't work anymore.
# monkey-patch reST parser to disable alphabetic and roman enumerated lists
from docutils.parsers.rst.states import Body
Body.enum.converters['loweralpha'] = \
Body.enum.converters['upperalpha'] = \
Body.enum.converters['lowerroman'] = \
Body.enum.converters['upperroman'] = lambda x: None
Linked PRs
Reactions are currently unavailable
Documentation
The html doc is not building with the new docutils >= 0.22. It's not a problem yet, because the current Sphinx used (sphinx~=8.2.0) doesn't install the latest one, but it's something that should be fixed for the future.
The problem can be reproduced:
$ cd Doc $ python3 -m venv env $ source env/bin/activate $ pip install -r requirements.txt $ pip install -U docutils $ sphinx-build --pdb -b html . build/html [...] File "env/lib64/python3.13/site-packages/docutils/parsers/rst/states.py", line 1494, in parse_enumerator ordinal = int(self.enum.converters[sequence](text)) TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'The actual problem is directly related to this line in docutils, done as part as this commit.
They wrap the converters with int so the monkey patch done in pyspecific.py doesn't work anymore.
# monkey-patch reST parser to disable alphabetic and roman enumerated lists from docutils.parsers.rst.states import Body Body.enum.converters['loweralpha'] = \ Body.enum.converters['upperalpha'] = \ Body.enum.converters['lowerroman'] = \ Body.enum.converters['upperroman'] = lambda x: NoneLinked PRs