Skip to content

Commit d90e9fc

Browse files
authored
Merge pull request #50 from dabapps/django-4-python-3.10
Add Django 4.0 and Python 3.10 to test matrix
2 parents be3c935 + 1d26ae9 commit d90e9fc

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

Diff for: .github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python: [3.6, 3.7, 3.8, 3.9]
13-
django: [3.1, 3.2]
12+
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
13+
django: ["3.2", "4.0"]
14+
exclude:
15+
- python: "3.6"
16+
django: "4.0"
17+
- python: "3.7"
18+
django: "4.0"
1419
database_url:
1520
- postgres://runner:password@localhost/project
1621
- mysql://root:[email protected]/project

Diff for: README.md

+2-2
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.1 and 3.2
11-
- Python 3.6, 3.7, 3.8 and 3.9
10+
- Django 3.2 and 4.0
11+
- Python 3.6, 3.7, 3.8, 3.9 and 3.10
1212

1313
## Getting Started
1414

0 commit comments

Comments
 (0)