-
Notifications
You must be signed in to change notification settings - Fork 27
Scheduled weekly dependency update for week 12 #677
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
Open
pyup-bot
wants to merge
7
commits into
main
Choose a base branch
from
pyup-scheduled-update-2026-03-23
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4df2ec6
Update setuptools from 80.9.0 to 82.0.1
pyup-bot d03093e
Update pytest from 8.3.5 to 9.0.2
pyup-bot 78b59f5
Update pytest-env from 1.1.5 to 1.6.0
pyup-bot 3df246a
Update pytest-mock from 3.14.0 to 3.15.1
pyup-bot 87fa538
Update fiftyone from 1.5.2 to 1.13.4
pyup-bot fcdf362
Update datasets from 3.6.0 to 4.8.3
pyup-bot c9df473
Update ultralytics from 8.3.237 to 8.4.25
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,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.6.0 | ||
| pytest-mock==3.15.1 | ||
| fiftyone==1.13.4 | ||
| datasets==4.8.3 | ||
| ultralytics==8.4.25 | ||
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: 2700
🏁 Script executed:
Repository: DagsHub/client
Length of output: 2667
🏁 Script executed:
Repository: DagsHub/client
Length of output: 567
🌐 Web query:
pytest 9.0.2 compatibility python 3.9 python 3.10 breaking changes💡 Result:
pytest 9.0.2 is not compatible with Python 3.9; it requires Python 3.10+. Support for Python 3.9 was dropped in pytest 9.0.0 following its end-of-life. It is fully compatible with Python 3.10. Key breaking changes in pytest 9.0 (affecting 9.0.2 as a patch release): - Dropped Python 3.9 support (
#13719,#13724). - Changes to test collection for overlapping/duplicated arguments (e.g., pytest a/ a/b now runs tests once; use --keep-duplicates to retain old behavior) (#12083). - CI mode detection now requires non-empty $CI or $BUILD_NUMBER (#13766). - config.args no longer accepts pathlib.Path (#13766). - PytestRemovedIn9Warning deprecations are now errors by default (#13779); set pytest.warnings.filterwarnings = "ignore::pytest.PytestRemovedIn9Warning" in pyproject.toml to revert. - config.inicfg private attribute breaking change in 9.0.0, shimmed back in 9.0.2 (#13946), to be deprecated in 9.1. - Other: subtests support added, terminal progress disabled by default except Windows (#13896), etc. Full details in official changelog. Users on Python 3.9 must stay on pytest 8.x or upgrade Python.Citations:
pytest 9.0.2 is incompatible with Python 3.9 and will break CI.
The repository declares
python_requires=">=3.9"and tests against Python 3.9–3.13 in CI, but pytest 9.0.2 requires Python 3.10+ (dropped Python 3.9 support in 9.0.0). Installation will fail on Python 3.9 before tests even run.Either:
python_requiresto>=3.10in setup.py, orAdditionally, pytest 9.0 introduces breaking changes (config.args no longer accepts pathlib.Path, PytestRemovedIn9Warning is now an error by default, CI mode detection changes). Verify plugin compatibility and test thoroughly before merge.