9fa3799dfa
Remove no longer required six runtime dependency. Add new explicit urllib3 runtime dependency. When we bumped urllib3 in074bc42971
we broke compatibility with python-docker. This compatibility error was fixed upstream in python-docker 6.1.0:3178c8d48b
Fixes: - https://gitlab.com/buildroot.org/buildroot/-/jobs/4811724555 Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13 lines
454 B
Plaintext
13 lines
454 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_PACKAGING # runtime
|
|
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
|
|
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
|
|
select BR2_PACKAGE_PYTHON_WEBSOCKET_CLIENT # runtime
|
|
help
|
|
A Python library for the Docker Engine API.
|
|
|
|
https://github.com/docker/docker-py
|