Skip to content

Commit

Permalink
Merge pull request #6 from BillSchumacher/django5
Browse files Browse the repository at this point in the history
Add support for Django 5.x
  • Loading branch information
BillSchumacher authored Oct 28, 2024
2 parents b8d8575 + 7cc30f2 commit c6a349c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,17 @@ jobs:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
dj-version: ["3.2.*", "4.0.*", "4.1.*", "4.2.*"]
dj-version: ["3.2.*", "4.0.*", "4.1.*", "4.2.*", "5.0.*", "5.1.*"]
psycopg: ["psycopg2", "psycopg[binary,pool]"]

exclude:
- dj-version: "5.0.*"
python-version: 3.8
- dj-version: "5.0.*"
python-version: 3.9
- dj-version: "5.1.*"
python-version: 3.8
- dj-version: "5.1.*"
python-version: 3.9
services:
postgres:
image: postgres:latest
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "django-audimatic"
version = "0.3.1"
version = "0.4.0"
authors = [
{ name="Bill Schumacher", email="[email protected]" },
]
Expand All @@ -20,6 +20,8 @@ classifiers = [
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit c6a349c

Please sign in to comment.