Skip to content

Commit 3ab6bbb

Browse files
committed
chore: Add python 3.13 and Django 5.0/5.1 to test matrix
1 parent 2d76ef5 commit 3ab6bbb

File tree

4 files changed

+21
-52
lines changed

4 files changed

+21
-52
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,22 @@ jobs:
1717
- "3.10"
1818
- "3.11"
1919
- "3.12"
20+
- "3.13"
2021
- "pypy3.9"
2122
- "pypy3.10"
2223
django:
2324
- "Django>=4.2,<4.3"
25+
- "Django>=5.0,<5.1"
26+
- "Django>=5.1,<5.2"
27+
exclude:
28+
- python: "3.9"
29+
django: "Django>=5.0,<5.1"
30+
- python: "3.9"
31+
django: "Django>=5.1,<5.2"
32+
- python: "pypy3.9"
33+
django: "Django>=5.0,<5.1"
34+
- python: "pypy3.9"
35+
django: "Django>=5.1,<5.2"
2436
env:
2537
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2638
DJANGO: ${{ matrix.django }}

poetry.lock

Lines changed: 6 additions & 49 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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description = "Django support for MongoDB via MongoEngine"
55
authors = ["Ross Lawley <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = ">=3.8,<4.0"
9-
django = ">=3.2,<5"
8+
python = ">=3.9,<4.0"
9+
django = ">=4.2,<5"
1010
mongoengine = ">=0.14"
1111

1212
[tool.poetry.group.dev.dependencies]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers =
2424
[options]
2525
zip_safe = False
2626
install_requires =
27-
Django>=4.2,<4.3
27+
Django>=4.2,<5.2
2828
mongoengine>=0.14
2929
include_package_data = True
3030
packages = find:

0 commit comments

Comments
 (0)