Skip to content

Commit 0795c67

Browse files
added Django 6 as supported version and add it to test matrix
1 parent e2cbac5 commit 0795c67

3 files changed

Lines changed: 41 additions & 7 deletions

File tree

.github/workflows/testing.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ jobs:
4444
# Django 4.2 is incompatible with Python 3.13+
4545
- django-version: 4.2
4646
python-version: 3.13
47+
#Django 6 is incompatible with < Pyhton 3.12
48+
- django-version: 6.0
49+
python-version: 3.9
50+
- django-version: 6.0
51+
python-version: 3.10
52+
- django-version: 6.0
53+
python-version: 3.11
54+
4755
steps:
4856
- uses: actions/checkout@v3
4957
- uses: actions/setup-python@v5

poetry.lock

Lines changed: 30 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
'Framework :: Django :: 5.0',
1717
'Framework :: Django :: 5.1',
1818
'Framework :: Django :: 5.2',
19+
'Framework :: Django :: 6.0',
1920
'Intended Audience :: Developers',
2021
'Intended Audience :: End Users/Desktop',
2122
'Operating System :: OS Independent',
@@ -40,13 +41,14 @@ python = '^3.9'
4041
django = [
4142
{ version = '^4.2', python = '>=3.9 <3.10' },
4243
{ version = '^4.2 || ^5', python = '>=3.10' },
44+
{ version = '^6', python = '>=3.12' },
4345
]
4446
requests = '*'
4547
urllib3 = '*'
4648
cryptography = '*'
4749
PyJWT = "*"
4850

49-
[tool.poetry.dev-dependencies]
51+
[tool.poetry.group.dev.dependencies]
5052
responses = '*'
5153
mock = '*'
5254
coverage = '*'

0 commit comments

Comments
 (0)