Skip to content

Commit aaec609

Browse files
committed
Add official Django 3.1 support
1 parent 40f14bb commit aaec609

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ jobs:
3636
matrix:
3737
python-version: [3.8]
3838
django-version:
39-
- "2.2"
40-
- "3.0"
39+
- "2.2.*"
40+
- "3.0.*"
41+
- "3.1.*"
4142
services:
4243
postgres:
4344
image: postgres
@@ -53,7 +54,7 @@ jobs:
5354
with:
5455
python-version: ${{ matrix.python-version }}
5556
- uses: actions/checkout@v2.0.0
56-
- run: python -m pip install psycopg2-binary Django~=${{ matrix.django-version }}
57+
- run: python -m pip install psycopg2-binary Django==${{ matrix.django-version }}
5758
- run: python setup.py test
5859
env:
5960
DB_PORT: ${{ job.services.postgres.ports[5432] }}

0 commit comments

Comments
 (0)