Revert "[test] Drop support for Python 3.6; upgrade CentOS"

This reverts commit ab1fbb0c96.
This commit is contained in:
Davis Schirmer
2021-11-05 01:20:16 -04:00
parent 66e30bd9df
commit 59376ece05
2 changed files with 3 additions and 2 deletions

View File

@@ -33,6 +33,7 @@ jobs:
strategy:
matrix:
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"

View File

@@ -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