Skip to content

Commit

Permalink
feat: Added support for django3.2 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawayria authored Jul 12, 2021
1 parent 8dd3802 commit 07e9fb5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django30, django22]
toxenv: [django22, django30, django31, django32]

steps:
- uses: actions/checkout@v1
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

version = '2.0.0'
version = '2.1.0'


def read(*parts):
Expand Down Expand Up @@ -86,5 +86,8 @@ def is_requirement(line):
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
],
)
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[tox]
envlist = py38-django{22,30,31}
envlist = py38-django{22,30,31,32}

[testenv]
skipsdist = True
usedevelop = True
deps =
deps =
-r{toxinidir}/requirements/tox.txt
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
-e.
commands =
python -Wd -m pytest {posargs}
Expand Down

0 comments on commit 07e9fb5

Please sign in to comment.