build(deps-dev): bump pip-dependencies group (fix #9603 - virtualenv for tox 4.52.1)#9607
Merged
ThomasWaldmann merged 1 commit intoMay 12, 2026
Conversation
…4.52.1 Include all changes from dependabot PR borgbackup#9603 plus fix the broken virtualenv pin: tox 4.52.1 requires virtualenv>=21.1, but PR borgbackup#9603 kept virtualenv==20.39.1 (20.x). Bumped virtualenv to 21.3.2. Fixes: borgbackup#9603
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #9607 +/- ##
==========================================
- Coverage 83.34% 83.33% -0.01%
==========================================
Files 89 89
Lines 15546 15546
Branches 2342 2342
==========================================
- Hits 12957 12956 -1
- Misses 1835 1836 +1
Partials 754 754 ☔ View full report in Codecov by Sentry. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is a fix for the broken dependabot PR #9603.
Root cause: PR #9603 bumped
toxfrom 4.48.1 → 4.52.1, buttox>=4.52.1requiresvirtualenv>=21.1. The PR keptvirtualenv==20.39.1(20.x), causing a pip dependency conflict and failing all CI jobs with:Fix: Bump
virtualenvfrom 20.39.1 → 21.3.2 (latest stable) indevelopment.lock.txt.All other changes are identical to PR #9603:
Closes #9603