Skip to content

Commit

Permalink
chore: test only active django versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bertonha authored and auvipy committed Dec 10, 2021
1 parent cf025e7 commit 554f381
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['2.2', '3.0', '3.1']
django-version: ['2.2', '3.2']
include:
- django-version: '4.0'
python-version: '3.8'
- django-version: '4.0'
python-version: '3.9'
- django-version: 'main'
python-version: '3.8'
- django-version: 'main'
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
skipsdist = True
usedevelop = true
envlist =
py{36,37,38,39}-dj{22,30,31,32,40}
py{36,37,38,39}-dj{22,32,40}
py{38,39}-djmain
flake8

Expand All @@ -16,8 +16,6 @@ python =
[gh-actions:env]
DJANGO =
2.2: dj22
3.0: dj30
3.1: dj31
3.2: dj32
4.0: dj40
main: djmain
Expand All @@ -40,8 +38,6 @@ deps =
pytz
djangorestframework==3.11.0
dj22: Django>=2.2,<3.0
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
djmain: https://github.com/django/django/archive/main.tar.gz
Expand Down

0 comments on commit 554f381

Please sign in to comment.