Skip to content

Commit e4c939e

Browse files
committed
Add Django 5 and Python 3.12 to test matrix
1 parent 35b74dd commit e4c939e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python: ["3.8", "3.9", "3.10", "3.11"]
13-
django: ["3.2", "4.0", "4.1", "4.2"]
12+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
django: ["3.2", "4.0", "4.1", "4.2", "5.0"]
1414
exclude:
1515
- python: "3.11"
1616
django: "3.2"
17+
- python: "3.12"
18+
django: "3.2"
1719
- python: "3.11"
1820
django: "4.0"
21+
- python: "3.12"
22+
django: "4.0"
1923
database_url:
2024
- postgres://runner:password@localhost/project
2125
- mysql://root:[email protected]/project

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Simple database-backed job queue. Jobs are defined in your settings, and are pro
77
Asynchronous tasks are run via a *job queue*. This system is designed to support multi-step job workflows.
88

99
Supported and tested against:
10-
- Django 3.2, 4.0, 4.1, 4.2
11-
- Python 3.8, 3.9, 3.10, 3.11
10+
- Django 3.2, 4.0, 4.1, 4.2, 5.0
11+
- Python 3.8, 3.9, 3.10, 3.11, 3.12
1212

1313
## Getting Started
1414

0 commit comments

Comments
 (0)