-
Notifications
You must be signed in to change notification settings - Fork 30
Scheduled weekly dependency update for week 19 #693
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
9 commits
Select commit
Hold shift + click to select a range
e2c564e
Update sphinx-autodoc-typehints from 3.9.9 to 3.10.2
pyup-bot 97fba21
Update setuptools from 80.9.0 to 82.0.1
pyup-bot 3dcaea3
Update pytest from 8.3.5 to 9.0.3
pyup-bot 7e249fc
Update respx from 0.22.0 to 0.23.1
pyup-bot 85d1ec0
Update pytest-env from 1.1.5 to 1.6.0
pyup-bot cb817d1
Update pytest-mock from 3.14.0 to 3.15.1
pyup-bot ed98e9d
Update fiftyone from 1.5.2 to 1.15.0
pyup-bot 376f82c
Update datasets from 3.6.0 to 4.8.5
pyup-bot 7abb340
Update ultralytics from 8.3.237 to 8.4.48
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
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 | ||
| respx==0.22.0 | ||
| setuptools==82.0.1 | ||
| pytest==9.0.3 | ||
| respx==0.23.1 | ||
| 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.6.0 | ||
| pytest-mock==3.15.1 | ||
| fiftyone==1.15.0 | ||
| datasets==4.8.5 | ||
| ultralytics==8.4.48 | ||
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: 2736
π Script executed:
Repository: DagsHub/client
Length of output: 192
π Web query:
pytest 9.0.0 breaking changes migration guideπ‘ Result:
pytest 9.0.0 was released on 2025-11-05.[1][2] There is no separate migration guide; all breaking changes and deprecation information is in the official Changelog[3][2][4] and Deprecations and Removals page.[5][6] Key breaking changes in pytest 9.0.0:[3][2][4] -
#12083: Fixed overlapping/duplicate path arguments (e.g., pytest a/ a/b now runs only a/ prefix; pytest x.py x.py runs once). Use --keep-duplicates to retain old behavior.[3][2] -#13719: Dropped Python 3.9 support.[3][2] -#13766: CI mode now requires $CI or $BUILD_NUMBER to be non-empty (not just defined).[3][2] -#13779: PytestRemovedIn9Warning deprecations are now errors by default (features removed in 9.1). Temporarily revert in pytest.ini: filterwarnings = ignore::pytest.PytestRemovedIn9Warning. Full list in deprecations docs.[3][2][4][5] - config.args now only accepts strings (not pathlib.Path).[3][2] PytestRemovedIn9Warnings cover previously deprecated features now erroring, e.g., certain fixture usages, marks on fixtures, yield tests, etc. Consult https://docs.pytest.org/en/stable/deprecations.html for complete list and migration steps.[5][6] Other notes: Users reported fixture issues with third-party libs like responses (not core pytest breaking change).[7] Upgrade via: pip install -U pytest[1]Citations:
π Script executed:
Repository: DagsHub/client
Length of output: 89
π Script executed:
Repository: DagsHub/client
Length of output: 1476
π Script executed:
Repository: DagsHub/client
Length of output: 229
π Script executed:
# Get full pyproject.toml to check Python requirements cat pyproject.tomlRepository: DagsHub/client
Length of output: 89
π Script executed:
Repository: DagsHub/client
Length of output: 249
π Script executed:
Repository: DagsHub/client
Length of output: 240
π Script executed:
# Get full pyproject.toml content (use head with larger number) head -100 pyproject.tomlRepository: DagsHub/client
Length of output: 89
π Script executed:
# Check the test CI workflow cat .github/workflows/python-package.ymlRepository: DagsHub/client
Length of output: 1410
π Script executed:
Repository: DagsHub/client
Length of output: 98
π Script executed:
Repository: DagsHub/client
Length of output: 500
pytest 9.0.3 drops Python 3.9 supportβincompatible with project requirements.
This upgrade drops Python 3.9 support, but your project explicitly supports Python 3.9 (
python_requires=">=3.9"in setup.py) and tests it in CI. This will cause test failures on Python 3.9 runners. Either upgrade the minimum Python version to 3.10+, or pin pytest to a version supporting Python 3.9 (e.g., 8.3.5).On the positive side, pytest 9.0.3 fixes a MODERATE security vulnerability (tmpdir handling), so upgrading is desiredβjust resolve the Python version constraint first.