diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2026-01-19 13:41:36 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-01-20 08:27:12 -0800 |
| commit | cc0c4a6e34e7f85ec52306a6474322e14e21416c (patch) | |
| tree | 3f0cff61b3506df93a41ef668fb06d91d0e2ff8e /meta-python/recipes-devtools | |
| parent | 65a66a5dde6fb0b065b8ba60d8a443d6e241c372 (diff) | |
| download | meta-openembedded-cc0c4a6e34e7f85ec52306a6474322e14e21416c.tar.gz | |
python3-black: Upgrade 25.12.0 -> 26.1.0
Upgrade to release 26.1.0:
Introduces the 2026 stable style, stabilizing the following changes:
- always_one_newline_after_import: Always force one blank line after
import statements, except when the line after the import is a
comment or an import statement
- fix_fmt_skip_in_one_liners: Fix # fmt: skip behavior on one-liner
declarations, such as def foo(): return "mock" # fmt: skip, where
previously the declaration would have been incorrectly collapsed
- fix_module_docstring_detection: Fix module docstrings being
treated as normal strings if preceded by comments
- fix_type_expansion_split: Fix type expansions split in generic
functions
- multiline_string_handling: Make expressions involving multiline
strings more compact
- normalize_cr_newlines: Add \r style newlines to the potential
newlines to normalize file newlines both from and to
- remove_parens_around_except_types: Remove parentheses around
multiple exception types in except and except* without as
- remove_parens_from_assignment_lhs: Remove unnecessary parentheses
from the left-hand side of assignments while preserving magic
trailing commas and intentional multiline formatting
- standardize_type_comments: Format type comments which have zero
or more spaces between # and type: or between type: and value to
# type: (value)
The following change was not in any previous stable release:
- Regenerated the _width_table.py and added tests for the Khmer
language
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-black_25.12.0.bb | 23 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-black_26.1.0.bb | 26 |
2 files changed, 26 insertions, 23 deletions
diff --git a/meta-python/recipes-devtools/python/python3-black_25.12.0.bb b/meta-python/recipes-devtools/python/python3-black_25.12.0.bb deleted file mode 100644 index 9bdf8df3e4..0000000000 --- a/meta-python/recipes-devtools/python/python3-black_25.12.0.bb +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | SUMMARY = "The uncompromising code formatter." | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d3465a2a183908c9cb95bf490bd1e7ab \ | ||
| 4 | file://docs/license.md;md5=d826b3c5269f21a8a0272af3f00d15c0 \ | ||
| 5 | file://src/blib2to3/LICENSE;md5=bbbad7490e921f9a73c0e891305cb4b3" | ||
| 6 | |||
| 7 | DEPENDS = "python3-hatch-vcs-native python3-hatchling-native" | ||
| 8 | SRC_URI[sha256sum] = "8d3dd9cea14bff7ddc0eb243c811cdb1a011ebb4800a5f0335a01a68654796a7" | ||
| 9 | |||
| 10 | inherit pypi python_hatchling | ||
| 11 | |||
| 12 | DEPENDS += "python3-hatch-fancy-pypi-readme-native" | ||
| 13 | |||
| 14 | PYPI_PACKAGE = "black" | ||
| 15 | |||
| 16 | RDEPENDS:${PN} = "python3-click \ | ||
| 17 | python3-mypy-extensions \ | ||
| 18 | python3-packaging \ | ||
| 19 | python3-pathspec \ | ||
| 20 | python3-platformdirs \ | ||
| 21 | python3-tomli \ | ||
| 22 | python3-typing-extensions \ | ||
| 23 | " | ||
diff --git a/meta-python/recipes-devtools/python/python3-black_26.1.0.bb b/meta-python/recipes-devtools/python/python3-black_26.1.0.bb new file mode 100644 index 0000000000..bcb0f0f408 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-black_26.1.0.bb | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | SUMMARY = "The uncompromising code formatter." | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d3465a2a183908c9cb95bf490bd1e7ab \ | ||
| 4 | file://docs/license.md;md5=d826b3c5269f21a8a0272af3f00d15c0 \ | ||
| 5 | file://src/blib2to3/LICENSE;md5=bbbad7490e921f9a73c0e891305cb4b3" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "d294ac3340eef9c9eb5d29288e96dc719ff269a88e27b396340459dd85da4c58" | ||
| 8 | |||
| 9 | inherit pypi python_hatchling | ||
| 10 | |||
| 11 | DEPENDS += " \ | ||
| 12 | python3-hatch-vcs-native \ | ||
| 13 | python3-hatchling-native \ | ||
| 14 | python3-hatch-fancy-pypi-readme-native \ | ||
| 15 | " | ||
| 16 | |||
| 17 | RDEPENDS:${PN} = " \ | ||
| 18 | python3-click \ | ||
| 19 | python3-mypy-extensions \ | ||
| 20 | python3-packaging \ | ||
| 21 | python3-pathspec \ | ||
| 22 | python3-platformdirs \ | ||
| 23 | python3-tomli \ | ||
| 24 | python3-typing-extensions \ | ||
| 25 | python3-pytokens \ | ||
| 26 | " | ||
