mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 04:22:40 +01:00
Replace Sphinx theme requirement in setup.py
and in add to deps in tox.ini.
This commit is contained in:
parent
af6258301c
commit
df2b173029
2 changed files with 4 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -132,7 +132,7 @@ setup(
|
|||
],
|
||||
"docs": [
|
||||
"sphinx",
|
||||
"sphinx_rtd_theme",
|
||||
"pydata_sphinx_theme",
|
||||
],
|
||||
# Plugin (optional) dependencies:
|
||||
"absubmit": ["requests"],
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -33,7 +33,9 @@ commands =
|
|||
|
||||
[testenv:docs]
|
||||
basepython = python3.10
|
||||
deps = sphinx<4.4.0
|
||||
deps =
|
||||
sphinx<4.4.0
|
||||
pydata_sphinx_theme
|
||||
commands = sphinx-build -W -q -b html docs {envtmpdir}/html {posargs}
|
||||
|
||||
# checks all links in the docs
|
||||
|
|
|
|||
Loading…
Reference in a new issue