Skip to content

Commit c34b489

Browse files
Removed testing support for Django 1.7 and Python 3.2
1 parent 5d4dd84 commit c34b489

File tree

2 files changed

+2
-23
lines changed

2 files changed

+2
-23
lines changed

.travis.yml

+1-20
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,18 @@ sudo: false
44
cache: pip
55
matrix:
66
exclude:
7-
- python: "3.2"
8-
env: DJANGO=">=1.9,<1.10" DRF=">=3.3,<3.4"
9-
- python: "3.2"
10-
env: DJANGO=">=1.9,<1.10" DRF=">=3.4,<3.5"
11-
- python: "3.2"
12-
env: DJANGO=">=1.10,<1.11" DRF=">=3.4,<3.5"
13-
147
- python: "3.3"
158
env: DJANGO=">=1.9,<1.10" DRF=">=3.3,<3.4"
169
- python: "3.3"
1710
env: DJANGO=">=1.9,<1.10" DRF=">=3.4,<3.5"
1811
- python: "3.3"
1912
env: DJANGO=">=1.10,<1.11" DRF=">=3.4,<3.5"
20-
21-
- python: "3.5"
22-
env: DJANGO=">=1.7,<1.8" DRF=">=3.1,<3.2"
23-
- python: "3.5"
24-
env: DJANGO=">=1.7,<1.8" DRF=">=3.2,<3.3"
25-
- python: "3.5"
26-
env: DJANGO=">=1.7,<1.8" DRF=">=3.3,<3.4"
2713
python:
2814
- "2.7"
29-
- "3.2"
3015
- "3.3"
3116
- "3.4"
3217
- "3.5"
3318
env:
34-
- DJANGO=">=1.7,<1.8" DRF=">=3.1,<3.2"
35-
- DJANGO=">=1.7,<1.8" DRF=">=3.2,<3.3"
36-
- DJANGO=">=1.7,<1.8" DRF=">=3.3,<3.4"
37-
3819
- DJANGO=">=1.8,<1.9" DRF=">=3.1,<3.2"
3920
- DJANGO=">=1.8,<1.9" DRF=">=3.2,<3.3"
4021
- DJANGO=">=1.8,<1.9" DRF=">=3.3,<3.4"
@@ -47,7 +28,7 @@ env:
4728
before_install:
4829
# Force an upgrade of py to avoid VersionConflict
4930
- pip install --upgrade py
50-
- pip install 'coverage<4; python_version == "3.2"' codecov
31+
- pip install codecov
5132
install:
5233
- pip install Django${DJANGO} djangorestframework${DRF}
5334
- python setup.py install

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
[tox]
22
envlist =
3-
py{27,32,33,34}-django17-drf{31,32,33},
4-
py{27,32,33,34,35}-django18-drf{31,32,33,34},
3+
py{27,33,34,35}-django18-drf{31,32,33,34},
54
py{27,34,35}-django19-drf{33,34},
65
py{27,34,35}-django110-drf{34},
76

87
[testenv]
98
deps =
10-
django17: Django>=1.7,<1.8
119
django18: Django>=1.8,<1.9
1210
django19: Django>=1.9,<1.10
1311
django110: Django>=1.10,<1.11

0 commit comments

Comments
 (0)