mirror of
https://github.com/beetbox/beets.git
synced 2026-01-25 17:45:44 +01:00
Move Sphinx pin to tox.ini
Turns out the Sphinx installed "outside" of the tox virtualenv is not the one that actually builds the docs...
This commit is contained in:
parent
cf69cad56f
commit
1bcec4e5f0
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
|
@ -86,7 +86,7 @@ jobs:
|
|||
- name: Install base dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
python -m pip install tox 'sphinx<4.4.0'
|
||||
python -m pip install tox sphinx
|
||||
|
||||
- name: Add problem matcher
|
||||
run: echo "::add-matcher::.github/sphinx-problem-matcher.json"
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -24,7 +24,7 @@ commands =
|
|||
|
||||
[testenv:docs]
|
||||
basepython = python3.9
|
||||
deps = sphinx
|
||||
deps = sphinx<4.4.0
|
||||
commands = sphinx-build -W -q -b html docs {envtmpdir}/html {posargs}
|
||||
|
||||
# checks all links in the docs
|
||||
|
|
|
|||
Loading…
Reference in a new issue