From f34ea007df574a102cd6e4853511bd62afbd58e2 Mon Sep 17 00:00:00 2001 From: Sym Roe Date: Fri, 22 Apr 2022 14:44:02 +0100 Subject: [PATCH] Python 3.8 support --- .github/workflows/ci.yml | 1 + pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a30376..68ac9b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,7 @@ jobs: strategy: matrix: python-version: + - "3.8" - "3.9" - "3.10" django-version: diff --git a/pyproject.toml b/pyproject.toml index ada07ed..1c6f295 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,13 +21,14 @@ classifiers = [ "Topic :: Software Development", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Framework :: Django", "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", ] -requires-python = ">=3.9" +requires-python = ">=3.8" dependencies = [ "django>=2.0", "django-storages",