Skip to content

Commit 0c9bffd

Browse files
authored
Merge pull request #57 from edoburu/feature/python-3.7
Drop support for Python 3.7
2 parents 93a392a + 75ed546 commit 0c9bffd

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",
@@ -39,7 +38,7 @@
3938
]
4039
name = "sphinxcontrib-django"
4140
readme = "README.rst"
42-
requires-python = ">=3.7"
41+
requires-python = ">=3.8"
4342

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

0 commit comments

Comments
 (0)