-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Post Django 3.2 cleanup (#237)
Co-authored-by: Mohammad Ahtasham ul Hassan <[email protected]>
- Loading branch information
1 parent
d8a1daa
commit c107c06
Showing
5 changed files
with
18 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
""" | ||
edx-organizations app initialization module | ||
""" | ||
__version__ = '6.10.1' # pragma: no cover | ||
__version__ = '6.11.0' # pragma: no cover |
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,25 +1,23 @@ | ||
[tox] | ||
envlist = py38-django{22,30,31,32}, quality | ||
envlist = py38-django{32,40}, quality | ||
|
||
[testenv] | ||
setenv = | ||
DJANGO_SETTINGS_MODULE = test_settings | ||
PYTHONPATH = {toxinidir} | ||
DJANGO_SETTINGS_MODULE = test_settings | ||
PYTHONPATH = {toxinidir} | ||
deps = | ||
django22: Django>=2.2,<2.3 | ||
django30: Django>=3.0,<3.1 | ||
django31: Django>=3.1,<3.2 | ||
django32: Django>=3.2,<4.0 | ||
-rtest-requirements.txt | ||
django32: Django>=3.2,<4.0 | ||
django40: Django>=4.0,<4.1 | ||
-rtest-requirements.txt | ||
commands = | ||
python -Wd -m pytest {posargs} | ||
coverage report | ||
python -Wd -m pytest {posargs} | ||
coverage report | ||
|
||
[testenv:quality] | ||
deps = | ||
Django>=2.2,<2.3 | ||
-rtest-requirements.txt | ||
Django>=3.2,<4.0 | ||
-rtest-requirements.txt | ||
commands = | ||
pycodestyle organizations | ||
pylint --rcfile=pylintrc organizations | ||
pycodestyle organizations | ||
pylint --rcfile=pylintrc organizations | ||
|