Several sphinx-gallery source files mention requirements.txt but that file is not in the repo. I think it was removed in connection to adopting pyproject.toml. As a result, some instructions do not work, such as,
pip install -r requirements.txt -r dev-requirements.txt
in README.rst.
Instructions could be revised to instead say something like, pip install sphinx-gallery "sphinx>=4.0" pillow (also in README.rst).
It would be better if the requirements were only listed in one place. I think that would be possible and if done correctly, you could tell devs to do something like, python -m pip install --verbose --no-build-isolation --editable ".[dev]" (which is how Matplotlib does it).
Several sphinx-gallery source files mention
requirements.txtbut that file is not in the repo. I think it was removed in connection to adoptingpyproject.toml. As a result, some instructions do not work, such as,pip install -r requirements.txt -r dev-requirements.txtin
README.rst.Instructions could be revised to instead say something like,
pip install sphinx-gallery "sphinx>=4.0" pillow(also inREADME.rst).It would be better if the requirements were only listed in one place. I think that would be possible and if done correctly, you could tell devs to do something like,
python -m pip install --verbose --no-build-isolation --editable ".[dev]"(which is how Matplotlib does it).