From 1c146762b372955c9f71a122b7820742bdb95135 Mon Sep 17 00:00:00 2001 From: Alexandra Pereira Date: Thu, 16 Sep 2021 08:42:00 -0300 Subject: [PATCH] github/workflows/main.yaml: include Python 3.9 Extend the github checks to include Python 3.9. Signed-off-by: Alexandra Pereira --- .github/workflows/main.yml | 2 +- config/docker/build-base/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9463ff6cd1..aea471340f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8, 3.9] steps: diff --git a/config/docker/build-base/Dockerfile b/config/docker/build-base/Dockerfile index 357f22c13b..636e18cbe5 100644 --- a/config/docker/build-base/Dockerfile +++ b/config/docker/build-base/Dockerfile @@ -36,7 +36,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ # Python 3.7 RUN apt-get update && apt-get install --no-install-recommends -y \ - python3.7 \ + python3.9 \ python3-jinja2 \ python3-keyring \ python3-pyelftools \