Important upstream changes: * Support for Python 3.12 has been added (in 7.0.0). * Websocket support is no longer included by default, and thus the dependency on "websocket-client" (since 7.0.0). * Build has been switched to hatchling and hatch-vcs (in 7.1.0), so Buildroot needs to use pep517 build. * Dependency on "packaging" has been removed (in 7.1.0). Upstream changelogs: https://github.com/docker/docker-py/releases/tag/7.0.0 https://github.com/docker/docker-py/releases/tag/7.1.0 Signed-off-by: Fiona Klute <fiona.klute+wiwa@gmx.de> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
11 lines
353 B
Plaintext
11 lines
353 B
Plaintext
config BR2_PACKAGE_PYTHON_DOCKER
|
|
bool "python-docker"
|
|
# docker-engine may be running on another host, so no other dependency
|
|
select BR2_PACKAGE_PYTHON3_SSL # runtime
|
|
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
|
|
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
|
|
help
|
|
A Python library for the Docker Engine API.
|
|
|
|
https://github.com/docker/docker-py
|