mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Features & Improvements ======================= Pass original working directory as env variable to pdm scripts (#3179) Output similar commands or script command when the input command is not correct (#3270) improve readability of Python interpreter validation message (#3276) Print task name by default when using pdm run (#3277) Make OrderedSet.__contains__ run in O(1) (#3280) Emit post_lock after writing pyproject.toml and pdm.lock in add/update (#3285) Drop support of Python 3.8 (#3298) Bug Fixes ============= Fix the name normalization issue for optional dependency groups. (#3271) Don't use uv when installing plugins in project. (#3283) Fix the bug that pdm plugins are invalid after installation on ubuntu system python. (#3289) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
17 lines
511 B
BlitzBasic
17 lines
511 B
BlitzBasic
SUMMARY = "A modern Python package and dependency manager supporting the latest PEP standards"
|
|
HOMEPAGE = "https://pdm-project.org/latest/"
|
|
LICENSE = "MIT"
|
|
SECTION = "devel/python"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2eb31a2cc1a758c34b499f287dd04ef2"
|
|
|
|
SRC_URI[sha256sum] = "9c928d6db62d104ab86318fe09aaf9bdfc6f616176af407e4df00f59e001930f"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += " \
|
|
python3-pdm-backend-native \
|
|
python3-pdm-build-locked-native \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|