Skip to content

Commit

Permalink
support django 4.2 test
Browse files Browse the repository at this point in the history
  • Loading branch information
007gzs committed Apr 28, 2023
1 parent 131c573 commit 1502d83
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
django-version: [django-2.2, django-3.0, django-3.1, django-3.2, django-4.0, django-4.1, django-pre, django-main]
django-version: [django-2.2, django-3.0, django-3.1, django-3.2, django-4.0, django-4.1, django-4.2, django-pre, django-main]
include:
- python-version: 3.6
django-version: django-2.2
Expand All @@ -21,7 +21,7 @@ jobs:
- python-version: 3.6
django-version: django-3.2
- python-version: 3.7
django-version: django-4.2
django-version: django-3.2
services:
# oracle:
# image: quay.io/maksymbilenko/oracle-12c
Expand Down Expand Up @@ -92,6 +92,10 @@ jobs:
run: |
pip install 'django>=4.1,<4.2'
if: matrix.django-version == 'django-4.1'
- name: Install Django 4.2
run: |
pip install 'django>=4.2,<5'
if: matrix.django-version == 'django-4.2'
- name: Install Django pre
run: |
pip install 'django' --pre
Expand Down

0 comments on commit 1502d83

Please sign in to comment.