Skip to content

Commit bea7357

Browse files
timobrembeckclaudep
authored andcommitted
Add support for Django 4.2
1 parent 4fa01a1 commit bea7357

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
max-parallel: 5
1414
matrix:
1515
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
16-
django-version: ['3.2', '4.0', '4.1']
16+
django-version: ['3.2', '4.1', '4.2']
1717
exclude:
18-
- python-version: '3.7'
19-
django-version: '4.0'
2018
- python-version: '3.7'
2119
django-version: '4.1'
20+
- python-version: '3.7'
21+
django-version: '4.2'
2222

2323
steps:
2424
- uses: actions/checkout@v3

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Unreleased
2+
3+
* Add support for Django 4.2
4+
* Remove support for Django 4.0
5+
16
2.2.1 (2023-04-03)
27

38
* Include the compiled translations in the released package (#177)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(fname):
2424
url='https://github.com/DjangoAdminHackers/django-linkcheck',
2525
packages=find_packages(),
2626
include_package_data=True,
27-
install_requires=['django', 'requests'],
27+
install_requires=['django>=3.2', 'requests'],
2828
extras_require={
2929
"dev": ["flake8", "isort", "pre-commit"],
3030
},
@@ -44,7 +44,7 @@ def read(fname):
4444
'Programming Language :: Python :: 3.11',
4545
'Framework :: Django',
4646
"Framework :: Django :: 3.2",
47-
"Framework :: Django :: 4.0",
4847
"Framework :: Django :: 4.1",
48+
"Framework :: Django :: 4.2",
4949
],
5050
)

0 commit comments

Comments
 (0)