-
Notifications
You must be signed in to change notification settings - Fork 27
Scheduled weekly dependency update for week 10 #674
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
7b845ab
Update sphinx from 7.3.7 to 9.1.0
pyup-bot 8250e43
Update furo from 2024.5.6 to 2025.12.19
pyup-bot c7444a3
Update sphinx-autobuild from 2024.4.16 to 2025.8.25
pyup-bot 93e75f0
Update sphinx-sitemap from 2.6.0 to 2.9.0
pyup-bot 7222749
Update sphinx-click from 5.0.1 to 6.2.0
pyup-bot 781279e
Update sphinx-autodoc-typehints from 2.3.0 to 3.9.7
pyup-bot 2489f38
Update setuptools from 80.9.0 to 82.0.1
pyup-bot 99b6ca5
Update pytest from 8.3.5 to 9.0.2
pyup-bot 76687fe
Update pytest-env from 1.1.5 to 1.5.0
pyup-bot 9352032
Update pytest-mock from 3.14.0 to 3.15.1
pyup-bot 2890311
Update fiftyone from 1.5.2 to 1.13.3
pyup-bot 71afcef
Update datasets from 3.6.0 to 4.6.1
pyup-bot a78bcb0
Update ultralytics from 8.3.237 to 8.4.21
pyup-bot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| sphinx==7.3.7 | ||
| furo==2024.5.6 | ||
| sphinx-autobuild==2024.4.16 | ||
| sphinx==9.1.0 | ||
| furo==2025.12.19 | ||
| sphinx-autobuild==2025.8.25 | ||
| sphinx-copybutton==0.5.2 | ||
| sphinx-sitemap==2.6.0 | ||
| sphinx-click==5.0.1 | ||
| sphinx-autodoc-typehints==2.3.0 | ||
| sphinx-sitemap==2.9.0 | ||
| sphinx-click==6.2.0 | ||
| sphinx-autodoc-typehints==3.9.7 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| setuptools==80.9.0 | ||
| pytest==8.3.5 | ||
| setuptools==82.0.1 | ||
| pytest==9.0.2 | ||
| respx==0.22.0 | ||
| pytest-git==1.8.0 | ||
| pytest-env==1.1.5 | ||
| pytest-mock==3.14.0 | ||
| fiftyone==1.5.2 | ||
| datasets==3.6.0 | ||
| ultralytics==8.3.237 | ||
| pytest-env==1.5.0 | ||
| pytest-mock==3.15.1 | ||
| fiftyone==1.13.3 | ||
| datasets==4.6.1 | ||
| ultralytics==8.4.21 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: DagsHub/client
Length of output: 495
🌐 Web query:
Sphinx 9.1.0 autodoc_default_flags deprecated autodoc_default_options💡 Result:
In Sphinx 9.1.0 (released Dec 31, 2025),
autodoc_default_flagsis long-deprecated and you should useautodoc_default_optionsinstead. [1][2]What changed / why you see the warning
autodoc_default_flagswas deprecated in Sphinx 1.8. [3]autodoc_default_options, which replaces the old “list of flags” with a dict of default directive options (option name → value). [4]How to migrate (
conf.py)Old (deprecated):
New:
Notes:
autodoc_default_optionsapplies to all autodoc directives. [5]True(orNone) is equivalent to specifying the flag with no value in the directive (e.g.,:members:). [6]Sources:
[1] Sphinx changelog (Release 9.1.0 date) (sphinx-doc.org)
[2] Sphinx changelog index / 9.1.0 section (sphinx-doc.org)
[3] Sphinx 1.8 changelog: “
autodoc_default_flagsis deprecated” (sphinx-doc.org)[4] Sphinx 1.8 changelog: added
autodoc_default_options(sphinx-doc.org)[5] Autodoc docs: use
autodoc_default_optionsfor default directive options (sphinx-doc.org)[6] Autodoc docs:
True/Noneequals specifying the option name only (sphinx-doc.org)Citations:
🏁 Script executed:
Repository: DagsHub/client
Length of output: 3149
🌐 Web query:
Sphinx 9.1.0 changelog autodoc_default_flags removal breaking change💡 Result:
Sphinx 9.1.0 (released Dec 31, 2025) does not list a breaking change removing
autodoc_default_flagsin its changelog; the only closely related autodoc entry is “autodoc: Fix default option parsing” (#14089). [1]autodoc_default_flagswas deprecated in Sphinx 1.8 and removed in Sphinx 4.0 (replacement:autodoc_default_options). So any “removal” break you’re seeing in 9.1.0 would be from carrying forward an already-removed setting, not a new 9.1.0 change. [2]Sources: [1] [2]
🌐 Web query:
Sphinx 9.0.0 9.1.0 autodoc_default_flags dropped removed💡 Result:
autodoc_default_flagswas not dropped in Sphinx 9.0.0/9.1.0—it was deprecated in Sphinx 1.8 and removed in Sphinx 4.0. Useautodoc_default_optionsinstead. [1][2]Migration example (conf.py)
Sphinx 9.0.0 did include a substantial autodoc rewrite (which can surface other edge-case incompatibilities), but it’s separate from the
autodoc_default_flagsremoval. [3]Sources: Sphinx “Deprecated APIs” (shows deprecated 1.8, removed 4.0) [1]; Sphinx 1.8 changelog (deprecates
autodoc_default_flagsand addsautodoc_default_options) [2]; Sphinx 9.0 changelog (autodoc rewrite) [3].References:
[1] https://www.sphinx-doc.org/en/master/extdev/deprecated.html
[2] https://www.sphinx-doc.org/en/master/changes/1.8.html
[3] https://www.sphinx-doc.org/en/master/changes/9.0.html
🏁 Script executed:
Repository: DagsHub/client
Length of output: 107
Update
docs/source/conf.pyto useautodoc_default_options.docs/source/conf.py:68usesautodoc_default_flags = ["inherited-members"], which was removed in Sphinx 4.0. Upgrading to Sphinx 9.1.0 will break the docs build unless this is updated to the current standard:autodoc_default_options.🔧 Proposed change in
docs/source/conf.py