@@ -5,48 +5,16 @@ language: python
5
5
python :
6
6
- " 3.5"
7
7
- " 3.4"
8
- - " 3.3"
9
8
- " 2.7"
10
- - " 2.6"
11
-
12
9
env :
13
- - DJANGO="Django==1.5"
14
- - DJANGO="Django==1.6"
15
- - DJANGO="Django==1.7"
16
- - DJANGO="Django==1.8"
17
- - DJANGO="Django==1.9"
18
-
19
- matrix :
20
- exclude :
21
- # Django 1.5 support Python 2.6.5 Python 2.7, Python 3.2 and 3.3.
22
- # Django 1.6 requires Python (2.6.X, 2.7.X, 3.2.X, and 3.3.X)
23
- # Django 1.7 requires Python 2.7, 3.2, 3.3, or 3.4
24
- # Django 1.8 requiert Python 2.7, 3.2, 3.3, 3.4 or 3.5.
25
- # Django 1.9 requiert Python 2.7, 3.4 or 3.5.
26
- # Python 2.6 support has been dropped for Django 1.7 onwards
27
- - python : " 3.4"
28
- env : DJANGO="Django==1.5"
29
- - python : " 3.5"
30
- env : DJANGO="Django==1.5"
31
- - python : " 3.4"
32
- env : DJANGO="Django==1.6"
33
- - python : " 3.5"
34
- env : DJANGO="Django==1.6"
35
- - python : " 2.6"
36
- env : DJANGO="Django==1.7"
37
- - python : " 3.5"
38
- env : DJANGO="Django==1.7"
39
- - python : " 2.6"
40
- env : DJANGO="Django==1.8"
41
- - python : " 2.6"
42
- env : DJANGO="Django==1.9"
43
- - python : " 3.3"
44
- env : DJANGO="Django==1.9"
10
+ - DJANGO="Django==1.8.4"
11
+ - DJANGO="Django==1.9.9"
12
+ - DJANGO="Django==1.10"
45
13
46
- # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
14
+ # command to install dependencies, e.g. pip install -r requirements.txt
47
15
install :
48
- - pip install $DJANGO --use-mirrors
49
- - pip install -r requirements-test.txt --use-mirrors
16
+ - pip install $DJANGO
17
+ - pip install -r requirements-test.txt
50
18
51
19
# command to run tests using coverage, e.g. python setup.py test
52
20
script : coverage run --source admin_reorder runtests.py
0 commit comments