Skip to content

Commit c68b064

Browse files
authored
Merge pull request #37 from edoburu/support-django-4.2
Add support for Django 4.2
2 parents 3a53fd7 + 6074428 commit c68b064

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ jobs:
66
strategy:
77
matrix:
88
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
9-
django-version: ["django~=3.2", "django~=4.0", "django~=4.1"]
9+
django-version: ["django~=3.2", "django~=4.1", "django~=4.2"]
1010
optional-dependencies: ["optional-deps", "no-optional-deps"]
1111
exclude:
12-
- python-version: "3.7"
13-
django-version: "django~=4.0"
1412
- python-version: "3.7"
1513
django-version: "django~=4.1"
14+
- python-version: "3.7"
15+
django-version: "django~=4.2"
1616
env:
1717
OS: ubuntu-latest
1818
PYTHON: ${{ matrix.python-version }}

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
Unreleased
5+
----------
6+
7+
* Add support for Django 4.2
8+
* Drop support for Django 4.0
9+
10+
411
Version 2.2 (2023-03-01)
512
------------------------
613

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@
1111
"Development Status :: 5 - Production/Stable",
1212
"Environment :: Web Environment",
1313
"Framework :: Django :: 3.2",
14-
"Framework :: Django :: 4.0",
1514
"Framework :: Django :: 4.1",
15+
"Framework :: Django :: 4.2",
1616
"Framework :: Django",
1717
"Framework :: Sphinx :: Extension",
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: Apache Software License",
2020
"Operating System :: OS Independent",
21-
"Programming Language :: Python :: 3.10",
22-
"Programming Language :: Python :: 3.11",
2321
"Programming Language :: Python :: 3.7",
2422
"Programming Language :: Python :: 3.8",
2523
"Programming Language :: Python :: 3.9",
24+
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python",
2727
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
2828
"Topic :: Internet :: WWW/HTTP",
2929
"Topic :: Software Development :: Libraries :: Application Frameworks",
3030
"Topic :: Software Development :: Libraries :: Python Modules",
3131
]
32-
dependencies = ["Django>=2.2", "Sphinx>=0.5", "pprintpp"]
32+
dependencies = ["Django>=3.2", "Sphinx>=0.5", "pprintpp"]
3333
description = "Improve the Sphinx autodoc for Django classes."
3434
dynamic = ["version"]
3535
keywords = ["django", "docstrings", "extension", "sphinx"]

0 commit comments

Comments
 (0)