Skip to content

build(deps-dev): bump the pip group across 1 directory with 2 updates - #44

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-2db0e3c61e
Closed

build(deps-dev): bump the pip group across 1 directory with 2 updates#44
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-2db0e3c61e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Dec 1, 2025

Copy link
Copy Markdown
Contributor

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Updates the requirements on sphinx and pytest to permit the latest version.
Updates sphinx to 9.0.4

Release notes

Sourced from sphinx's releases.

Sphinx 9.0.4

Changelog: https://www.sphinx-doc.org/en/master/changes/9.0.html

Bugs fixed

  • #14143: Fix spurious build warnings when translators reorder references in strings, or use translated display text in references. Patch by Matt Wang.
Changelog

Sourced from sphinx's changelog.

Release 9.0.4 (released Dec 04, 2025)

Bugs fixed

  • #14143: Fix spurious build warnings when translators reorder references in strings, or use translated display text in references. Patch by Matt Wang.

Release 9.0.3 (released Dec 04, 2025)

Bugs fixed

  • #14142: autodoc: Restore some missing exports in :mod:!sphinx.ext.autodoc. Patch by Adam Turner.

Release 9.0.2 (released Dec 03, 2025)

Bugs fixed

  • #14142: autodoc: Restore :mod:!sphinx.ext.autodoc.mock. Patch by Adam Turner.

Release 9.0.1 (released Dec 01, 2025)

Bugs fixed

  • #13942: autodoc: Restore the mapping interface for options objects. Patch by Adam Turner.
  • #13942: autodoc: Deprecate the mapping interface for options objects. Patch by Adam Turner.
  • #13387: Update translations.

Release 9.0.0 (released Nov 30, 2025)

Dependencies

... (truncated)

Commits

Updates pytest to 9.1.1

Release notes

Sourced from pytest's releases.

9.1.1

pytest 9.1.1 (2026-06-19)

Bug fixes

  • #14220: Fixed a logic bug in pytest.RaisesGroup which would might cause it to display incorrect "It matches FooError() which was paired with BarError" messages.
  • #14591: Fixed a regression in pytest 9.1.0 which caused overriding a parametrized fixture with an indirect @​pytest.mark.parametrize to fail with "duplicate parametrization of '<fixture name>'".
  • #14606: Fixed list-item typing errors from mypy in @pytest.mark.parametrize <pytest.mark.parametrize ref> argvalues parameter.
  • #14608: Fixed a regression in pytest 9.1.0 where conftest.py files located in <invocation dir>/test* were no longer loaded as initial conftests when invoked without arguments. This could cause certain hooks (like pytest_addoption) in these files to not fire.
Commits
  • cf470ec Prepare release version 9.1.1
  • e0c8ce6 Merge pull request #14625 from pytest-dev/patchback/backports/9.1.x/a07c31a97...
  • 1b82d16 Merge pull request #14624 from pytest-dev/patchback/backports/9.1.x/b375b79ec...
  • 501c4bc Merge pull request #14596 from bluetech/doc-classmethod
  • b61f588 Merge pull request #14622 from chrisburr/fix-14608-initial-conftest-test-subdir
  • 9a567e0 [automated] Update plugin list (#14617) (#14618)
  • ef8b299 Merge pull request #14620 from pytest-dev/patchback/backports/9.1.x/680f9f3ed...
  • 66abd07 Merge pull request #14220 from bysiber/fix-stale-iexp-raisesgroup
  • 79fbf93 Merge pull request #14612 from pytest-dev/patchback/backports/9.1.x/974ed48b6...
  • 0d312eb Merge pull request #14611 from bluetech/parametrize-argvalues-typing
  • Additional commits viewable in compare view

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Dec 1, 2025
@dependabot
dependabot Bot force-pushed the dependabot/pip/pip-2db0e3c61e branch from 96f570b to e5fbd9d Compare December 2, 2025 22:55
@akkornel

Copy link
Copy Markdown
Member

@dependabot rebase

@dependabot
dependabot Bot force-pushed the dependabot/pip/pip-2db0e3c61e branch 2 times, most recently from 8e96492 to 591c1b8 Compare July 17, 2026 17:03
@akkornel

Copy link
Copy Markdown
Member

I had a look at some of the docs built with sphinx 9, and although some of the underlying HTML changed, the output looks the same.

Updates the requirements on [sphinx](https://github.com/sphinx-doc/sphinx) and [pytest](https://github.com/pytest-dev/pytest) to permit the latest version.

Updates `sphinx` to 9.0.4
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/v9.0.4/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v5.0.0...v9.0.4)

Updates `pytest` to 9.1.1
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.1...9.1.1)

---
updated-dependencies:
- dependency-name: pytest
  dependency-version: 9.0.1
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: sphinx
  dependency-version: 9.0.1
  dependency-type: direct:development
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/pip/pip-2db0e3c61e branch from 591c1b8 to 5d0bdd4 Compare July 21, 2026 17:03
@akkornel

Copy link
Copy Markdown
Member

Sphinx 9 introduces a warning that might be a Sphinx bug. Building with Sphinx 9.0.4, I get this warning:

<unknown>:1: WARNING: py:class reference target not found: collections.abc.MutableMapping[str [ref.class]

MutableMapping is referenced in two places:

  • src/stanford/mais/account/__init__.py, in AccountClient
  • src/stanford/mais/workgroup/__init__.py, in WorkgroupClient

The introduction of commit fb99736 (closing #53) is now causing docs to be built during tests, so now this PR is showing failing tests.

I expect this is an upstream Sphinx issue/regression, but I still need to investigate.

@akkornel

Copy link
Copy Markdown
Member

Opened sphinx-doc/sphinx#14547 to report the issue I'm seeing.

@akkornel

Copy link
Copy Markdown
Member

Opened #56 to track ignoring Sphinx updates.

akkornel added a commit that referenced this pull request Jul 21, 2026
While testing #44, I found that Sphinx 9 returns a confusing warning.
There might be an issue with Sphinx 9.0+.

Issue #56, and the comments on PR #44, contain additional details.

Until the issue is fixed, keep us at the latest-available 8.x version of
Sphinx.  This commit adds a note in the pyproject file, and also adds
Dependabot configuration to ignore sphinx.

Closes: #56
@dependabot @github

dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 21, 2026
@dependabot
dependabot Bot deleted the dependabot/pip/pip-2db0e3c61e branch July 21, 2026 20:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant