You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/05/09 21:06:13 UTC

[airflow] branch master updated: extra docker-py update to resolve docker op issues (#15731)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 41930fd  extra docker-py update to resolve docker op issues (#15731)
41930fd is described below

commit 41930fdebfaa7ed2c53e7861c77a83312ca9bdc4
Author: Fred Thomsen <me...@fredthomsen.net>
AuthorDate: Sun May 9 17:05:49 2021 -0400

    extra docker-py update to resolve docker op issues (#15731)
    
    Due to changes in the docker api in api version 1.41, the docker python
    client needs an update to properly handle the filter param imagejson
    endpoint.  Without this fix, the `DockerOperator` will not pull the image
    unless `force_pull` is set to True.
    
    Fixes #13905
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 818b28e..7a3024e 100644
--- a/setup.py
+++ b/setup.py
@@ -263,7 +263,7 @@ doc = [
     'sphinxcontrib-spelling==5.2.1',
 ]
 docker = [
-    'docker~=3.0',
+    'docker',
 ]
 druid = [
     'pydruid>=0.4.1',