Skip to content

Commit 792fe41

Browse files
feat: Drop python 3.9 and Django 4.2,5.0; add python 3.14, Django 5.2 (#219)
1 parent 30ec158 commit 792fe41

File tree

3 files changed

+447
-469
lines changed

3 files changed

+447
-469
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,18 @@ jobs:
1313
strategy:
1414
matrix:
1515
python:
16-
- "3.9"
1716
- "3.10"
1817
- "3.11"
1918
- "3.12"
2019
- "3.13"
20+
- "3.14"
2121
- "pypy3.10"
22+
- "pypy3.11"
2223
django:
23-
- "Django>=4.2,<4.3"
24-
- "Django>=5.0,<5.1"
2524
- "Django>=5.1,<5.2"
25+
- "Django>=5.2,<6.0"
2626
exclude:
27-
- python: "3.9"
28-
django: "Django>=5.0,<5.1"
29-
- python: "3.9"
27+
- python: "3.14"
3028
django: "Django>=5.1,<5.2"
3129
env:
3230
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
dynamic = ["version"]
99
license = {text = "BSD"}
10-
requires-python = "<4.0,>=3.9"
10+
requires-python = "<4.0,>=3.10"
1111

1212
classifiers = [
1313
"Development Status :: 4 - Beta",
@@ -22,7 +22,7 @@ classifiers = [
2222
"Framework :: Django"
2323
]
2424
dependencies = [
25-
"django<5,>=4.2",
25+
"django<6,>=5.1",
2626
"mongoengine>=0.14",
2727
]
2828

0 commit comments

Comments
 (0)