Skip to content

Commit c13ea89

Browse files
committed
Updated Python/Django supported versions
1 parent 1553159 commit c13ea89

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ jobs:
1212
strategy:
1313
max-parallel: 5
1414
matrix:
15-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
16-
django-version: ['4.2', '5.2']
15+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
16+
django-version: ['4.2', '5.2', '6.0']
1717
exclude:
18-
- python-version: '3.9'
19-
django-version: '5.2'
18+
- python-version: '3.10'
19+
django-version: '6.0'
20+
- python-version: '3.11'
21+
django-version: '6.0'
2022
- python-version: '3.13'
2123
django-version: '4.2'
24+
- python-version: '3.14'
25+
django-version: '4.2'
2226

2327
steps:
2428
- uses: actions/checkout@v4

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Unreleased
2+
3+
* Add support for Django 6.0
4+
* Add support for Python 3.14
5+
* Remove support for Python 3.9
6+
17
2.4.0 (2025-09-28)
28

39
* Add index to Link (David Venhoff, #202)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ automatically when objects are saved. This is handled by signals.
2727
Minimal requirements
2828
--------------------
2929

30-
django-linkcheck requires Python 3.9 and Django 4.2.
30+
django-linkcheck requires Python 3.10 and Django 4.2.
3131

3232
Basic usage
3333
-----------

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,19 @@ classifiers = [
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",
3130
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3232
"Framework :: Django",
3333
"Framework :: Django :: 4.2",
34-
"Framework :: Django :: 5.0",
35-
"Framework :: Django :: 5.1",
3634
"Framework :: Django :: 5.2",
35+
"Framework :: Django :: 6.0",
3736
]
3837
license = "BSD-3-Clause"
3938
license-files = ["LICENSE"]
40-
requires-python = ">=3.9"
39+
requires-python = ">=3.10"
4140
dependencies = [
4241
"django>=4.2",
4342
"requests",

0 commit comments

Comments
 (0)