docs: avoid latest sphinx, per recent error
not sure exactly what the problem here is, but docs cannot build with sphinx 8.2 - and traceback showed sphinx-toolbox was responsible. the latter apparently is required by the `enum-tools[sphinx]` pkg hopefully we can remove this cap before long..? cf. https://www.sphinx-doc.org/en/master/changes/index.html#release-8-2-0-released-feb-18-2025
This commit is contained in:
parent
4bb4272341
commit
f3cca2e370
|
@ -38,7 +38,8 @@ dependencies = [
|
|||
[project.optional-dependencies]
|
||||
postgres = ["psycopg2"]
|
||||
mysql = ["mysql-connector-python"]
|
||||
docs = ["Sphinx", "furo", "sphinxcontrib-programoutput", "enum-tools[sphinx]"]
|
||||
# TODO: remove sphinx version cap after new sphinx-toolbox release?
|
||||
docs = ["Sphinx<8.2", "furo", "sphinxcontrib-programoutput", "enum-tools[sphinx]"]
|
||||
tests = ["pytest-cov", "tox"]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue