From fd93b0cb08f82ff47bc1ce92ce2f93c73da07609 Mon Sep 17 00:00:00 2001 From: John Helmert Date: Mon, 26 Aug 2019 17:26:31 -0500 Subject: [PATCH] Switch Gitlab CI Docker images to Debian Buster --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c963e48..1f90914 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ python2.7: - image: python:2.7-stretch + image: python:2.7-buster script: - pip install .[test] - pip install . @@ -8,7 +8,7 @@ python2.7: - coverage report python3.5: - image: python:3.5-stretch + image: python:3.5-buster script: - pip install .[test] - pip install . @@ -17,7 +17,7 @@ python3.5: - coverage report python3.6: - image: python:3.6-stretch + image: python:3.6-buster script: - pip install .[test] - pip install . @@ -26,7 +26,7 @@ python3.6: - coverage report python3.7: - image: python:3.7-stretch + image: python:3.7-buster script: - pip install .[test] - pip install . @@ -35,7 +35,7 @@ python3.7: - coverage report python3.8: - image: python:3.8-stretch + image: python:3.8-buster script: - pip install .[test] - pip install .