mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

Changelog: - Remove support for Python 2.7 - Make Python 3.6 the minimum version supported Features - Add limit parameter to image search endpoint Bugfixes - Fix KeyError exception on secret create - Verify TLS keys loaded from docker contexts - Update PORT_SPEC regex to allow square brackets for IPv6 addresses - Fix containers and images documentation examples 4.4.4 Bugfixes - Remove LD_LIBRARY_PATH and SSL_CERT_FILE environment variables when shelling out to the ssh client 4.4.3 Features - Add support for docker.types.Placement.MaxReplicas Bugfixes - Fix SSH port parsing when shelling out to the ssh client 4.4.2 Bugfixes - Fix SSH connection bug where the hostname was incorrectly trimmed and the error was hidden - Fix docs example Miscellaneous - Add Python3.8 and 3.9 in setup.py classifier list Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
20 lines
597 B
BlitzBasic
20 lines
597 B
BlitzBasic
SUMMARY = "A Python library for the Docker Engine API."
|
|
HOMEPAGE = "https://github.com/docker/docker-py"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=34f3846f940453127309b920eeb89660"
|
|
|
|
SRC_URI[md5sum] = "9cc5156a2ff6458a8f52114b9bbc0d7e"
|
|
SRC_URI[sha256sum] = "3e8bc47534e0ca9331d72c32f2881bb13b93ded0bcdeab3c833fb7cf61c0a9a5"
|
|
|
|
DEPENDS += "${PYTHON_PN}-pip-native"
|
|
|
|
RDEPENDS_${PN} += " \
|
|
${PYTHON_PN}-misc \
|
|
${PYTHON_PN}-six \
|
|
${PYTHON_PN}-docker-pycreds \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-websocket-client \
|
|
"
|
|
|
|
inherit pypi setuptools3
|