Skip to content

Commit 1964189

Browse files
Bump sphinx from 8.2.3 to 9.1.0 (#1032)
* Bump sphinx from 8.2.3 to 9.1.0 Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 8.2.3 to 9.1.0. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](sphinx-doc/sphinx@v8.2.3...v9.1.0) --- updated-dependencies: - dependency-name: sphinx dependency-version: 9.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update tox.ini to be in line with marshmallow --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steven Loria <git@stevenloria.com>
1 parent 4fdbb0b commit 1964189

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Contributions to the documentation are welcome. Documentation is written in `reS
121121

122122
To build the docs in "watch" mode: ::
123123

124-
$ tox -e watch-docs
124+
$ tox -e docs-serve
125125

126126
Changes in the `docs/` directory will automatically trigger a rebuild.
127127

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ tests = [
7676
]
7777
docs = [
7878
"webargs[frameworks]",
79-
"Sphinx==8.2.3",
79+
"Sphinx==9.1.0",
8080
"sphinx-issues==5.0.1",
8181
"furo==2025.12.19",
8282
]

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ commands = sphinx-build docs/ docs/_build {posargs}
4040

4141
; Below tasks are for development only (not run in CI)
4242

43-
[testenv:watch-docs]
44-
deps =
45-
sphinx-autobuild
43+
[testenv:docs-serve]
44+
deps = sphinx-autobuild
4645
extras = docs
47-
commands = sphinx-autobuild --open-browser docs/ docs/_build {posargs} --watch src/webargs --delay 2
46+
commands = sphinx-autobuild --port=0 --open-browser --delay=2 docs/ docs/_build {posargs} --watch src --watch CONTRIBUTING.rst --watch README.rst
4847

49-
[testenv:watch-readme]
48+
[testenv:readme-serve]
5049
deps = restview
5150
skip_install = true
5251
commands = restview README.rst
52+

0 commit comments

Comments
 (0)