-
-
Notifications
You must be signed in to change notification settings - Fork 536
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
Update black requirement from <25.0,>=23.1 to >=23.1,<26.0 #777
base: master
Are you sure you want to change the base?
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files
|
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.
PR Summary
Updates the version constraint for black in requirements.txt to allow versions up to 26.0, introducing the new 2025 stable style with improved code formatting features.
- Updated
requirements.txt
to allow black versions>=23.1,<26.0
, enabling access to new 2025 stable style formatting - Adds consistent trailing commas in typed function parameters and improved docstring handling
- Introduces more elegant formatting of generic function definitions with better parameter splitting
- Improves performance with faster f-string tokenization
- Fixes several formatting bugs including IPython notebook cells and tuple generators in
with
statements
💡 (3/5) Reply to the bot's comments like "Can you suggest a fix for this @greptileai?" or ask follow-up questions!
1 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings | Greptile
@@ -13,7 +13,7 @@ psutil | |||
python-dotenv | |||
PyYAML | |||
docstring_parser==0.16 | |||
black>=23.1,<25.0 | |||
black>=23.1,<26.0 |
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.
style: Consider pinning to a specific version (e.g., ==25.1.0) to ensure consistent formatting across all environments
Updates the requirements on [black](https://github.com/psf/black) to permit the latest version. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@23.1.0...25.1.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
593b01a
to
f4390b4
Compare
Updates the requirements on black to permit the latest version.
Release notes
Sourced from black's releases.
... (truncated)
Changelog
Sourced from black's changelog.
... (truncated)
Commits
8a737e7
Prepare release 25.1.0 (#4563)d330dee
docs: We're not going to use backslashes for the with statement (#4564)3d81290
Movewrap_long_dict_values_in_parens
to the preview style (#4561)459562c
Improve function declaration wrapping when it contains generic type definitio...99dbf30
Cache executor to avoid hitting open file limits (#4560)c0b92f3
Prepare the 2025 stable style (#4558)e58baf1
Add test for #1187 (#4559)1455ae4
Fix docs CI (#4555)584d033
fix: Don't remove parenthesis around long dictionary values (#4377)6e96540
Fix CI (#4551)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)📚 Documentation preview 📚: https://swarms--777.org.readthedocs.build/en/777/