Skip to content

Commit

Permalink
chore: Add python 3.13 and Django 5.0/5.1 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
last-partizan committed Dec 28, 2024
1 parent 2d76ef5 commit 3ab6bbb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 52 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,22 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.9"
- "pypy3.10"
django:
- "Django>=4.2,<4.3"
- "Django>=5.0,<5.1"
- "Django>=5.1,<5.2"
exclude:
- python: "3.9"
django: "Django>=5.0,<5.1"
- python: "3.9"
django: "Django>=5.1,<5.2"
- python: "pypy3.9"
django: "Django>=5.0,<5.1"
- python: "pypy3.9"
django: "Django>=5.1,<5.2"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DJANGO: ${{ matrix.django }}
Expand Down
55 changes: 6 additions & 49 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ description = "Django support for MongoDB via MongoEngine"
authors = ["Ross Lawley <[email protected]>"]

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
django = ">=3.2,<5"
python = ">=3.9,<4.0"
django = ">=4.2,<5"
mongoengine = ">=0.14"

[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers =
[options]
zip_safe = False
install_requires =
Django>=4.2,<4.3
Django>=4.2,<5.2
mongoengine>=0.14
include_package_data = True
packages = find:
Expand Down

0 comments on commit 3ab6bbb

Please sign in to comment.