-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Mohammad Ahtasham ul Hassan <ahthassan74@gmail.com>
- Loading branch information
1 parent
ad91dce
commit 74a9bb1
Showing
11 changed files
with
32 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
""" API for creating submissions and scores. """ | ||
__version__ = '3.4.4' | ||
__version__ = '3.5.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,31 @@ | ||
[tox] | ||
envlist = py38-django{22,30,31,32}-drf{12, latest}, quality, docs | ||
envlist = py38-django{32,40}-drf{312, latest}, quality, docs | ||
|
||
[testenv] | ||
setenv= | ||
setenv = | ||
DJANGO_SETTINGS_MODULE = settings | ||
deps = | ||
deps = | ||
-r{toxinidir}/requirements/test.txt | ||
django22: Django>=2.2,<2.3 | ||
django30: Django>=3.0,<3.1 | ||
django31: Django>=3.1,<3.2 | ||
django32: Django>=3.2,<4.0 | ||
drf311: djangorestframework<3.12.0 | ||
django40: Django>=4.0,<4.1 | ||
drf312: djangorestframework<3.13.0 | ||
drflatest: djangorestframework | ||
commands = | ||
commands = | ||
python -Wd -m pytest {posargs} | ||
|
||
[testenv:quality] | ||
setenv= | ||
setenv = | ||
DJANGO_SETTINGS_MODULE=settings | ||
whitelist_externals = | ||
whitelist_externals = | ||
make | ||
deps = | ||
deps = | ||
-r{toxinidir}/requirements/dev.txt | ||
commands = | ||
commands = | ||
make test_quality | ||
|
||
[testenv:docs] | ||
deps = | ||
deps = | ||
-r{toxinidir}/requirements/dev.txt | ||
commands = | ||
commands = | ||
python setup.py build_sphinx | ||
|