Skip to content

Commit

Permalink
Add support for Django 5.0 and Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Oct 17, 2023
1 parent 3a22d59 commit 8fda6c5
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11]
django-version: [3.2, 4.1, 4.2]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
django-version: [3.2, 4.1, 4.2, "5.0a1"]
exclude:
# Django 3.2
- python-version: "3.10"
django-version: 3.2
- python-version: 3.11
django-version: 3.2
- python-version: 3.12
django-version: 3.2

# Django 4.1
- python-version: 3.12
django-version: 4.1

# Django 4.2
- python-version: 3.12
django-version: 4.2

# Django 5.0
- python-version: 3.8
django-version: 5.0a1
- python-version: 3.9
django-version: 5.0a1

steps:
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 8fda6c5

Please sign in to comment.