Skip to content

Commit c7ceef9

Browse files
authored
Merge pull request #40 from aaronn/1.4.0
Python 3.7+ & DRF 3.10+
2 parents 67a6e3f + 594447a commit c7ceef9

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
django = {version=">=2.2.9"}
7+
django = "*"
88
djangorestframework = "*"
99
twilio = "*"
1010

Pipfile.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ curl -X POST -d "token=815381" localhost:8000/callback/auth/
3939
Requirements
4040
============
4141
42-
- Python (3.6+)
43-
- Django (2.0+)
44-
- Django Rest Framework + AuthToken (3.6+)
42+
- Python (3.7+)
43+
- Django (2.2+)
44+
- Django Rest Framework + AuthToken (3.10+)
4545
- Python-Twilio (Optional, for mobile.)
4646
4747

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[tox]
22
envlist =
33
flake8
4-
py37-django22-drf{37,38,39}
4+
py37-django22-drf{310,311}
5+
py37-django30-drf{310,311}
56

67
[testenv]
78
commands =
@@ -11,9 +12,9 @@ deps =
1112
pytest-cov
1213
pytest-django
1314
django22: Django==2.2.*
14-
drf37: djangorestframework==3.7.*
15-
drf38: djangorestframework==3.8.*
16-
drf39: djangorestframework==3.9.*
15+
django30: Django==3.0.*
16+
drf310: djangorestframework==3.10.*
17+
drf311: djangorestframework==3.11.*
1718
setenv =
1819
PYTHONPATH = {toxinidir}
1920

0 commit comments

Comments
 (0)