From f06616a93471764318bee87788b2b430b578bed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Fri, 5 Feb 2021 09:33:20 +0200 Subject: [PATCH] Add Python 3.9 to the testing matrix --- .github/workflows/django.yml | 2 +- docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 20ea0249..66f70bd6 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: db: [sqlite, postgres, mysql] - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] include: - db: postgres db_user: runner diff --git a/docker/Dockerfile b/docker/Dockerfile index bbc41856..2548a482 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8 +FROM python:3.9 RUN useradd --system hc ENV PYTHONUNBUFFERED=1