From ad1056222ec6136071a55b38c0329c0e46e3e179 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Jan 2026 01:02:19 +0000 Subject: [PATCH 1/2] 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](https://github.com/sphinx-doc/sphinx/compare/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] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f8105b5f..07c1224a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,7 +76,7 @@ tests = [ ] docs = [ "webargs[frameworks]", - "Sphinx==8.2.3", + "Sphinx==9.1.0", "sphinx-issues==5.0.1", "furo==2025.12.19", ] From d29464b9d9cb0502bd778cd016228414e504e276 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Wed, 7 Jan 2026 11:41:53 -0500 Subject: [PATCH 2/2] Update tox.ini to be in line with marshmallow --- CONTRIBUTING.rst | 2 +- tox.ini | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 22b9e9d0..bd35c0b5 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -121,7 +121,7 @@ Contributions to the documentation are welcome. Documentation is written in `reS To build the docs in "watch" mode: :: - $ tox -e watch-docs + $ tox -e docs-serve Changes in the `docs/` directory will automatically trigger a rebuild. diff --git a/tox.ini b/tox.ini index c9c91879..3ef6c592 100644 --- a/tox.ini +++ b/tox.ini @@ -40,13 +40,13 @@ commands = sphinx-build docs/ docs/_build {posargs} ; Below tasks are for development only (not run in CI) -[testenv:watch-docs] -deps = - sphinx-autobuild +[testenv:docs-serve] +deps = sphinx-autobuild extras = docs -commands = sphinx-autobuild --open-browser docs/ docs/_build {posargs} --watch src/webargs --delay 2 +commands = sphinx-autobuild --port=0 --open-browser --delay=2 docs/ docs/_build {posargs} --watch src --watch CONTRIBUTING.rst --watch README.rst -[testenv:watch-readme] +[testenv:readme-serve] deps = restview skip_install = true commands = restview README.rst +