Skip to content

Commit 83c1c90

Browse files
authored
Support Django 6.0 (#150)
* Support Django 6.0 * Test against Django 6.0 * Update poetry.loc
1 parent 4fb0dd1 commit 83c1c90

3 files changed

Lines changed: 61 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
matrix:
5858
# https://docs.djangoproject.com/en/5.2/faq/install/#what-python-version-can-i-use-with-django
5959
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
60-
django-version: ["4.2", "5.0", "5.1", "5.2"]
60+
django-version: ["4.2", "5.0", "5.1", "5.2", "6.0"]
6161
db-engine: [sqlite, postgres]
6262
tz-engine: [pytz, zoneinfo]
6363
exclude:
@@ -89,6 +89,16 @@ jobs:
8989
python-version: "3.9"
9090
- django-version: "5.2"
9191
tz-engine: pytz
92+
- django-version: "6.0"
93+
python-version: "3.8"
94+
- django-version: "6.0"
95+
python-version: "3.9"
96+
- django-version: "6.0"
97+
python-version: "3.10"
98+
- django-version: "6.0"
99+
python-version: "3.11"
100+
- django-version: "6.0"
101+
tz-engine: pytz
92102

93103
env:
94104
PYTHON_VERSION: ${{ matrix.python-version }}

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Framework :: Django :: 5.0",
2929
"Framework :: Django :: 5.1",
3030
"Framework :: Django :: 5.2",
31+
"Framework :: Django :: 6.0",
3132
"Intended Audience :: Developers",
3233
"Operating System :: OS Independent",
3334
"Topic :: Utilities",
@@ -37,7 +38,7 @@ packages = [
3738
]
3839

3940
[tool.poetry.dependencies]
40-
Django = ">=3.2,<6.0"
41+
Django = ">=3.2,<6.1"
4142
python = "^3.8"
4243
"backports.zoneinfo" = { version = "^0.2.1", python = "<3.9" }
4344

0 commit comments

Comments
 (0)