Tags: docker/docker-py
Tags
chore: fix missing setuptools in CI (#3189) Install `setuptools` in addition to `wheel` before trying to run `python setup.py` manually. Note that `setuptools` is already correctly listed in the `pyproject.toml` file for consumers installing via `pip` etc, but in CI the file is run directly to generate `sdist` and `bdist_wheel` artifacts for PyPI. Signed-off-by: Milas Bowman <milas.bowman@docker.com>
chore: update MAINTAINERS and remove CODEOWNERS (#3188) Update `MAINTAINERS` with the current folks, adn remove the `CODEOWNERS` file entirely -- it's not really helpful here, as this project isn't big enough to have multiple subsections with different maintainers/owners. Signed-off-by: Milas Bowman <milas.bowman@docker.com>
fix: eventlet compatibility (#3132) Check if poll attribute exists on select module instead of win32 platform check The implementation done in #2865 is breaking usage of docker-py library within eventlet. As per the Python `select.poll` documentation (https://docs.python.org/3/library/select.html#select.poll) and eventlet select removal advice (eventlet/eventlet#608 (comment)), it is preferable to use an implementation based on the availability of the `poll()` method that trying to check if the platform is `win32`. Fixes #3131 Signed-off-by: Mathieu Virbel <mat@meltingrocks.com>
PreviousNext