Skip to content

Commit 75ed546

Browse files
committed
Drop support for Python 3.7
1 parent 486796a commit 75ed546

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
8+
python-version: ["3.8", "3.9", "3.10", "3.11"]
99
django-version: ["django~=3.2", "django~=4.1", "django~=4.2"]
1010
optional-dependencies: ["optional-deps", "no-optional-deps"]
11-
exclude:
12-
- python-version: "3.7"
13-
django-version: "django~=4.1"
14-
- python-version: "3.7"
15-
django-version: "django~=4.2"
1611
env:
1712
OS: ubuntu-latest
1813
PYTHON: ${{ matrix.python-version }}

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Unreleased
66

77
* Drop support for sphinx < 3.4.0
88
* [ `#45 <https://github.com/edoburu/sphinxcontrib-django/issues/45>`_ ] Fix rendering of inheritance diagrams
9+
* Drop support for Python 3.7
910

1011

1112
Version 2.4 (2023-07-02)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: Apache Software License",
2020
"Operating System :: OS Independent",
21-
"Programming Language :: Python :: 3.7",
2221
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
@@ -36,7 +35,7 @@
3635
license = { text = "Apache2 2.0 License" }
3736
name = "sphinxcontrib-django"
3837
readme = "README.rst"
39-
requires-python = ">=3.7"
38+
requires-python = ">=3.8"
4039

4140
[project.urls]
4241
"Bug Tracker" = "https://github.com/edoburu/sphinxcontrib-django/issues"

0 commit comments

Comments
 (0)