diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-01-14 16:28:41 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-01-14 08:52:06 -0800 |
| commit | 220d5ec1ae37a582961907db3009fb50b6745a14 (patch) | |
| tree | 2614a3d362ab5c9714e6e827820486ac3aaec51a /meta-python/recipes-devtools/python/python3-pdm_2.22.2.bb | |
| parent | a00b7df732f7ee3c2129a9e3ec148aef4b8643e8 (diff) | |
| download | meta-openembedded-220d5ec1ae37a582961907db3009fb50b6745a14.tar.gz | |
python3-pdm: upgrade 2.22.1 -> 2.22.2
Changelog:
============
- Write installer metadata like INSTALLER and REQUESTED to dist-info directory
when installing packages.
- Respect .python-version file in the project root directory when selecting the
Python interpreter. By default, it will be written when running pdm use command.
- Fix a problem of missing dependencies when adding to dev dependencies if both
editable and non-editable dependencies exist.
- Use stdlib for URL <-> Path conversions.
- shellingham.detect_shell() returns ('tcsh', '/bin/tcsh') for tcsh on FreeBSD,
so the current code tries to use the Bash venv activation script and fails due
to syntax error. This change fixes the issue.
- Fix a performance issue because pypi source credentials were being queried
many times from keyring.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pdm_2.22.2.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pdm_2.22.2.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pdm_2.22.2.bb b/meta-python/recipes-devtools/python/python3-pdm_2.22.2.bb new file mode 100644 index 0000000000..53c0828bcb --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pdm_2.22.2.bb | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | SUMMARY = "A modern Python package and dependency manager supporting the latest PEP standards" | ||
| 2 | HOMEPAGE = "https://pdm-project.org/latest/" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | SECTION = "devel/python" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2eb31a2cc1a758c34b499f287dd04ef2" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "907dbaa1659f07c763902f8429c1573aa32b5ef2d99b3b123b5f1e38015c917b" | ||
| 8 | |||
| 9 | inherit pypi python_setuptools_build_meta | ||
| 10 | |||
| 11 | DEPENDS += " \ | ||
| 12 | python3-pdm-backend-native \ | ||
| 13 | python3-pdm-build-locked-native \ | ||
| 14 | " | ||
| 15 | |||
| 16 | BBCLASSEXTEND = "native nativesdk" | ||
