Skip to content

Commit

Permalink
Add support for Django 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Aug 6, 2022
1 parent 8931c88 commit 5214119
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,34 +49,35 @@ jobs:
python-version:
- "3.10"
django-version:
- "3.2"
- "3.2" # LTS
- "4.0"
- "4.1"
extras:
- "test"
include:
- os: "macos-latest"
python-version: "3.10"
django-version: "4.0"
django-version: "3.2"
extras: "test"
- os: "windows-latest"
python-version: "3.10"
django-version: "4.0"
django-version: "3.2"
extras: "test"
- os: "ubuntu-latest"
python-version: "3.10"
django-version: "4.0"
django-version: "3.2"
extras: "test,dramatiq"
- os: "ubuntu-latest"
python-version: "3.10"
django-version: "4.0"
django-version: "3.2"
extras: "test,celery"
- os: "ubuntu-latest"
python-version: "3.10"
django-version: "4.0"
django-version: "3.2"
extras: "test,drf"
- os: "ubuntu-latest"
python-version: "3.10"
django-version: "4.0"
django-version: "3.2"
extras: "test,cleanup"

runs-on: ${{ matrix.os }}
Expand All @@ -91,6 +92,6 @@ jobs:
run: sudo apt-get install -y redis-server
- run: python -m pip install pip~=21.0 # https://github.com/pypa/pip/issues/11133
- run: python -m pip install .[${{ matrix.extras }}] codecov
- run: python -m pip install django~=${{ matrix.django-version }}a
- run: python -m pip install django~=${{ matrix.django-version }}.0
- run: python -m pytest
- run: codecov

0 comments on commit 5214119

Please sign in to comment.