Skip to content

Commit

Permalink
Merge pull request #50 from dabapps/django-4-python-3.10
Browse files Browse the repository at this point in the history
Add Django 4.0 and Python 3.10 to test matrix
  • Loading branch information
j4mie authored Dec 8, 2021
2 parents be3c935 + 1d26ae9 commit d90e9fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ jobs:

strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]
django: [3.1, 3.2]
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
django: ["3.2", "4.0"]
exclude:
- python: "3.6"
django: "4.0"
- python: "3.7"
django: "4.0"
database_url:
- postgres://runner:password@localhost/project
- mysql://root:[email protected]/project
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Simple database-backed job queue. Jobs are defined in your settings, and are pro
Asynchronous tasks are run via a *job queue*. This system is designed to support multi-step job workflows.

Supported and tested against:
- Django 3.1 and 3.2
- Python 3.6, 3.7, 3.8 and 3.9
- Django 3.2 and 4.0
- Python 3.6, 3.7, 3.8, 3.9 and 3.10

## Getting Started

Expand Down

0 comments on commit d90e9fc

Please sign in to comment.