Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker/docker-py
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.1.2
Choose a base ref
...
head repository: docker/docker-py
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.1.3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 11, 2023

  1. ci: empty commit to trigger readthedocs

    Fixing integration
    
    Signed-off-by: Milas Bowman <[email protected]>
    milas committed May 11, 2023
    Configuration menu
    Copy the full SHA
    bc4c0d7 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2023

  1. 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 <[email protected]>
    tito authored Jun 1, 2023
    Configuration menu
    Copy the full SHA
    78439eb View commit details
    Browse the repository at this point in the history
Loading