From e45e5d3e064c00b38c6fe1e9714b759eb6c16543 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 3 Oct 2018 18:08:51 +0100 Subject: [PATCH] tests: Document Python versions in build_docker_images.py --- tests/image_prep/build_docker_images.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/image_prep/build_docker_images.py b/tests/image_prep/build_docker_images.py index c085d29e..94a17104 100755 --- a/tests/image_prep/build_docker_images.py +++ b/tests/image_prep/build_docker_images.py @@ -24,9 +24,9 @@ def sh(s, *args): label_by_id = {} for base_image, label in [ - ('debian:stretch', 'debian'), - ('centos:6', 'centos6'), - ('centos:7', 'centos7') + ('debian:stretch', 'debian'), # Python 2.7.13, 3.5.3 + ('centos:6', 'centos6'), # Python 2.6.6 + ('centos:7', 'centos7') # Python 2.7.5 ]: args = sh('docker run --rm -it -d -h mitogen-%s %s /bin/bash', label, base_image)