Skip to content

Commit 0591c40

Browse files
author
AlexJChadwick
committed
chore(core): bump django 5.2
1 parent 6e07613 commit 0591c40

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python: ["3.9", "3.10", "3.11", "3.12"]
20+
python: ["3.12", "3.13", "3.14"]
21+
django: ["5.1", "5.2", "6.0"]
2122
steps:
2223
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
2324
- name: Install uv
@@ -27,4 +28,4 @@ jobs:
2728
- name: Install deps
2829
run: uv sync --dev
2930
- name: Run tests
30-
run: uv run pytest test
31+
run: uv run --with "django~=${{ matrix.django }}" pytest test

pyproject.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ authors = [{name = "Curtis Maloney", email = "curtis@tinbrain.net"}]
77
license = {text = "MIT"}
88
requires-python = ">=3.12"
99
dependencies = [
10-
"django==6.0.2",
10+
"django >=5.1, <6.1",
1111
"croniter >=6, <6.1",
1212
]
1313
classifiers = [
1414
"Programming Language :: Python",
15-
"Programming Language :: Python :: 3.6",
16-
"Programming Language :: Python :: 3.7",
17-
"Programming Language :: Python :: 3.8",
15+
"Programming Language :: Python :: 3.12",
16+
"Programming Language :: Python :: 3.13",
17+
"Programming Language :: Python :: 3.14",
1818
"Framework :: Django",
19-
"Framework :: Django :: 3.1",
19+
"Framework :: Django :: 5.1",
20+
"Framework :: Django :: 5.2",
21+
"Framework :: Django :: 6.0",
2022
]
2123

2224
[project.urls]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)