Skip to content

Commit f215f9a

Browse files
authored
Merge pull request #32 from sontek/django-6-compatibility
django 6 compatibility
2 parents 9fa7e06 + 829ceaa commit f215f9a

3 files changed

Lines changed: 18 additions & 9 deletions

File tree

.github/workflows/lint-and-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ jobs:
2727
strategy:
2828
matrix:
2929
python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
30-
django_version: ["4.2", "5.1", "5.2"]
30+
django_version: ["4.2", "5.1", "5.2", "6.0"]
31+
exclude:
32+
# Django 6.0 requires Python 3.12+
33+
- python_version: "3.10"
34+
django_version: "6.0"
35+
- python_version: "3.11"
36+
django_version: "6.0"
3137

3238
runs-on: ubuntu-latest
3339

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ dist/
66
.pypirc
77
.ruff_cache
88
.venv
9+
.venv_django_*

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,13 @@ Currently build in and unit-tested fields. They have the same APIs as their non-
7070

7171
### Compatible Django Version
7272

73-
| Compatible Django Version | Specifically tested |
74-
| ------------------------- | ------------------- |
75-
| `3.2` | :heavy_check_mark: |
76-
| `4.0` | :heavy_check_mark: |
77-
| `4.1` | :heavy_check_mark: |
78-
| `4.2` | :heavy_check_mark: |
79-
| `5.0` | :heavy_check_mark: |
80-
| `5.1` | :heavy_check_mark: |
73+
| Compatible Django Version | Specifically tested | Python Version Required |
74+
| ------------------------- | ------------------- | ----------------------- |
75+
| `3.2` | :heavy_check_mark: | 3.8+ |
76+
| `4.0` | :heavy_check_mark: | 3.8+ |
77+
| `4.1` | :heavy_check_mark: | 3.8+ |
78+
| `4.2` | :heavy_check_mark: | 3.8+ |
79+
| `5.0` | :heavy_check_mark: | 3.10+ |
80+
| `5.1` | :heavy_check_mark: | 3.10+ |
81+
| `5.2` | :heavy_check_mark: | 3.10+ |
82+
| `6.0` | :heavy_check_mark: | 3.12+ |

0 commit comments

Comments
 (0)