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

Changelog: ============ -Fixed regression in 2.1.0 where the strconfig argument to load/loads is ignored -Added main_thread_only execmodel which is derived from the thread execmodel and only executes remote_exec calls in the main thread. -The library is now typed and the typing is exposed to type-checkers. -Re-exported Gateway, Channel, DumpError and LoadError from execnet. The constructors are private. -Fixed GatewayBase.join() timeout argument getting ignored. -Removed support for Python 3.7. -Added official support for Python 3.12. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
915 B
BlitzBasic
33 lines
915 B
BlitzBasic
# Copyright (C) 2021 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "execnet: rapid multi-Python deployment"
|
|
HOMEPAGE = "https://execnet.readthedocs.io/en/latest/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=772fcdaca14b378878d05c7d857e6c3e"
|
|
|
|
DEPENDS += "\
|
|
python3-pip-native \
|
|
python3-hatch-vcs-native \
|
|
"
|
|
|
|
SRC_URI += "file://run-ptest \
|
|
"
|
|
SRC_URI[sha256sum] = "5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3"
|
|
|
|
inherit ptest pypi python_hatchling
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/testing/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "python3-core python3-crypt python3-ctypes python3-fcntl python3-io python3-shell python3-threading"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|