From 01af0f01954937e309051b8dcf38ff48bd7dadcd Mon Sep 17 00:00:00 2001 From: Mike Fogel Date: Fri, 14 Jul 2023 21:09:40 -0700 Subject: [PATCH] Drop support for python 3.7 --- .github/workflows/ci.yml | 6 +----- README.md | 1 + pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7116eb..68f7939 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,16 +55,12 @@ jobs: strategy: matrix: # https://docs.djangoproject.com/en/4.1/faq/install/#what-python-version-can-i-use-with-django - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] django-version: ["3.2", "4.1", "4.2"] db-engine: [sqlite, postgres] exclude: - django-version: "3.2" python-version: "3.11" - - django-version: "4.1" - python-version: "3.7" - - django-version: "4.2" - python-version: "3.7" env: PYTHON_VERSION: ${{ matrix.python-version }} diff --git a/README.md b/README.md index 48d2031..f883989 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,7 @@ poetry run pytest #### in development (main) - Drop support for django 2.2, 4.0 +- Drop support for python 3.7 #### 5.1 (2023-06-18) diff --git a/pyproject.toml b/pyproject.toml index 499720b..f6111fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ packages = [ [tool.poetry.dependencies] Django = ">=3.2,<5.0,!=4.0.*" -python = "^3.7" +python = "^3.8" pytz = "*" "backports.zoneinfo" = { version = "^0.2.1", python = "<3.9" }