forked from robcharlwood/django-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated codebase for Django 3 and Python 3.8
Also removed the failing tox builds for python 3.5.7 and 3.6.8
- Loading branch information
1 parent
8eb2d05
commit 51a4ca9
Showing
3 changed files
with
28 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
[tox] | ||
envlist = | ||
pycodestyle-{py27,py37}, | ||
pycodestyle-{py27,py37,py38} | ||
django{111,2,21}-{py27,py35,py36,py37} | ||
django{22}-{py357,py368,py37} | ||
django{22}-{py35,py36,py37} | ||
django{3}-{py36,py37,py38} | ||
|
||
[testenv] | ||
deps = | ||
django{111,2,21,22}: coverage | ||
django{111,2,21,22,3}: coverage | ||
django111: Django<2.0 | ||
django2: Django<2.1 | ||
django21: Django<2.2 | ||
django22: Django<3.0 | ||
django3: Django<4.0 | ||
py27: -rcaptcha/tests/requirements/py27.txt | ||
pycodestyle: pycodestyle | ||
commands = | ||
django{111,2,21,22}: coverage run manage.py test | ||
django{111,2,21,22,3}: coverage run manage.py test | ||
pycodestyle: pycodestyle captcha/ |