upgrade black dependency#14268
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the version of the black dependency in pyproject.toml for both main and development dependencies. However, the specified version 26.3.1 is invalid because black uses calendar versioning (YY.M.B), making this a non-existent future release that will cause installation failures. It is recommended to use a valid, currently published version such as 24.10.0 instead.
| "requests-toolbelt==1.0.0", | ||
| "flake8==7.3.0", | ||
| "black==24.4.2", | ||
| "black==26.3.1", |
There was a problem hiding this comment.
The version 26.3.1 for black appears to be invalid or non-existent. Since black uses calendar versioning (YY.M.B), 26.3.1 would represent a release from March 2026. Please use a valid, currently published version of black (such as 24.10.0) to avoid installation errors.
| "black==26.3.1", | |
| "black==24.10.0", |
| "pytest==8.4.2", | ||
| "flake8==7.3.0", | ||
| "black==24.4.2", | ||
| "black==26.3.1", |
There was a problem hiding this comment.
The version 26.3.1 for black appears to be invalid or non-existent. Since black uses calendar versioning (YY.M.B), 26.3.1 would represent a release from March 2026. Please use a valid, currently published version of black (such as 24.10.0) to avoid installation errors.
| "black==26.3.1", | |
| "black==24.10.0", |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #14268 +/- ##
=======================================
Coverage 74.92% 74.92%
=======================================
Files 975 975
Lines 59902 59902
Branches 8157 8157
=======================================
Hits 44884 44884
Misses 13194 13194
Partials 1824 1824 🚀 New features to boost your workflow:
|
Checklist
For all pull requests:
The following are required only for core and extension modules (they are welcomed, but not required, for contrib modules):
Submitting the PR does not require you to check all items, but by the time it gets merged, they should be either satisfied or inapplicable.