Skip to content

Commit 235efa4

Browse files
committed
Dropping django 1.7 support
1 parent d266614 commit 235efa4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ python:
33
- "2.7"
44
- "3.5"
55
env:
6-
- DJANGO=1.7.11
7-
- DJANGO=1.8.9
8-
- DJANGO=1.9.2
6+
- DJANGO=1.8.13
7+
- DJANGO=1.9.7
98
install:
109
- pip install -q Django==$DJANGO --use-mirrors
1110
- pip install coveralls
1211
- pip install -r rest_auth/tests/requirements.pip
1312
matrix:
1413
exclude:
1514
- python: "3.5"
16-
env: DJANGO=1.7.11
15+
env: DJANGO=1.8.13
1716
script:
1817
- coverage run --source=rest_auth setup.py test
1918
after_success:

demo/requirements.pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
django>=1.7.0
1+
django>=1.8.0
22
django-rest-auth==0.7.0
33
django-allauth==0.24.1
44
six==1.9.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
keywords='django rest auth registration rest-framework django-registration api',
2929
zip_safe=False,
3030
install_requires=[
31-
'Django>=1.7.0',
31+
'Django>=1.8.0',
3232
'djangorestframework>=3.1.0',
3333
'six>=1.9.0',
3434
],

0 commit comments

Comments
 (0)