summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Ruhland <felipe.ruhland@gmail.com>2021-04-07 21:44:24 +0200
committerFelipe Ruhland <felipe.ruhland@gmail.com>2021-04-07 21:44:24 +0200
commitf53e615e0fd4b7becf9d72c73b8a9e021d473f62 (patch)
tree897cb561888131d2f57e3bac256db44ce41468ec
parent96c12726fdb9b24e985b4de74d5c82145ccd8185 (diff)
downloaddocker-py-f53e615e0fd4b7becf9d72c73b8a9e021d473f62.tar.gz
Update API and Engine versions
The Makefile and `docker/constants.py` were with old versions, so I updated them to the current one Signed-off-by: Felipe Ruhland <felipe.ruhland@gmail.com>
-rw-r--r--Makefile4
-rw-r--r--docker/constants.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 60d9984..78a0d33 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-TEST_API_VERSION ?= 1.39
-TEST_ENGINE_VERSION ?= 19.03.13
+TEST_API_VERSION ?= 1.41
+TEST_ENGINE_VERSION ?= 20.10.05
.PHONY: all
all: test
diff --git a/docker/constants.py b/docker/constants.py
index 43fce61..9cd58b6 100644
--- a/docker/constants.py
+++ b/docker/constants.py
@@ -1,7 +1,7 @@
import sys
from .version import version
-DEFAULT_DOCKER_API_VERSION = '1.39'
+DEFAULT_DOCKER_API_VERSION = '1.41'
MINIMUM_DOCKER_API_VERSION = '1.21'
DEFAULT_TIMEOUT_SECONDS = 60
STREAM_HEADER_SIZE_BYTES = 8