If, following the 'making a local build' instructions in README, I do something like:
cd /tmp
git clone https://github.com/dir21/arches-docs.git
python3.12 -m venv ENV
source ENV/bin/activate
cd arches-docs
pip install -r requirements.txt
sphinx-autobuild docs docs/_build/html
The build promptly fails with:
command not found: sphinx-autobuild
This is fixed easily enough with:
pip install sphinx-autobuild
But would it be possible to just add sphinx-autobuild to requirements.txt?
I will make a patch if yes.