From 75ed546d64611a270f882c14340ee0f154de9f87 Mon Sep 17 00:00:00 2001 From: Timo Brembeck Date: Tue, 26 Sep 2023 19:47:39 +0200 Subject: [PATCH] Drop support for Python 3.7 --- .github/workflows/tests.yml | 7 +------ CHANGES.rst | 1 + pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6f87606..0333cf7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,14 +5,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] django-version: ["django~=3.2", "django~=4.1", "django~=4.2"] optional-dependencies: ["optional-deps", "no-optional-deps"] - exclude: - - python-version: "3.7" - django-version: "django~=4.1" - - python-version: "3.7" - django-version: "django~=4.2" env: OS: ubuntu-latest PYTHON: ${{ matrix.python-version }} diff --git a/CHANGES.rst b/CHANGES.rst index b82953e..ba365a0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ Unreleased * Drop support for sphinx < 3.4.0 * [ `#45 `_ ] Fix rendering of inheritance diagrams +* Drop support for Python 3.7 Version 2.4 (2023-07-02) diff --git a/pyproject.toml b/pyproject.toml index f86df6a..e665cc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -36,7 +35,7 @@ license = { text = "Apache2 2.0 License" } name = "sphinxcontrib-django" readme = "README.rst" - requires-python = ">=3.7" + requires-python = ">=3.8" [project.urls] "Bug Tracker" = "https://github.com/edoburu/sphinxcontrib-django/issues"