From 59376ece057b8e8bc08c5749a7f71bbeee91239b Mon Sep 17 00:00:00 2001 From: Davis Schirmer Date: Fri, 5 Nov 2021 01:20:16 -0400 Subject: [PATCH] Revert "[test] Drop support for Python 3.6; upgrade CentOS" This reverts commit ab1fbb0c965b4b6d0646fa05026bba08f86e9638. --- .github/workflows/asciinema.yml | 1 + tests/distros/Dockerfile.centos | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/asciinema.yml b/.github/workflows/asciinema.yml index 3933e98..2bfae0a 100644 --- a/.github/workflows/asciinema.yml +++ b/.github/workflows/asciinema.yml @@ -33,6 +33,7 @@ jobs: strategy: matrix: python: + - "3.6" - "3.7" - "3.8" - "3.9" diff --git a/tests/distros/Dockerfile.centos b/tests/distros/Dockerfile.centos index 1a7b629..bc4fd7e 100644 --- a/tests/distros/Dockerfile.centos +++ b/tests/distros/Dockerfile.centos @@ -1,8 +1,8 @@ # syntax=docker/dockerfile:1.3 -FROM docker.io/library/centos:8 +FROM docker.io/library/centos:7 -RUN yum install -y epel-release && yum install -y make python39 && yum clean all +RUN yum install -y epel-release && yum install -y make python36 && yum clean all WORKDIR /usr/src/app