-
Notifications
You must be signed in to change notification settings - Fork 632
(test): exclude django 6.1 alphas and betas from tox #6690
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -122,6 +122,7 @@ | |
| "<3.1": ["pytest-django<4.0", "six"], | ||
| "py3.14,py3.14t": ["coverage==7.11.0"], | ||
| }, | ||
| "include": "<6.1b1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The version specifier Suggested FixTo correctly exclude all Django 6.1 pre-releases, including both alphas and betas, change the version specifier from Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
| }, | ||
| "dramatiq": { | ||
| "package": "dramatiq", | ||
|
|
||
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.
Alpha releases still match include
Medium Severity
The new
includevalue<6.1b1is meant to drop Django 6.1 alphas and betas from tox, but_prefilter_releasestreatsincludeas a PEP 440 whitelist withprereleases=True. Under that ordering, 6.1 alphas are still below6.1b1, so they remain eligible (including aslatest_prerelease) while betas are filtered out.Reviewed by Cursor Bugbot for commit 8f85ce6. Configure here.