@@ -8,84 +8,84 @@ envlist = py26_dj14, py27_dj14, py26_dj15, py27_dj15, py32_dj15, py33_dj15, py26
8
8
9
9
[testenv:py26_dj14]
10
10
basepython = python2.6
11
- commands = pip install django<1.5
11
+ commands = pip install ' django>= 1.4, <1.5'
12
12
pip install -r requirements.txt
13
13
{envpython} setup.py test
14
14
15
15
[testenv:py27_dj14]
16
16
basepython = python2.7
17
- commands = pip install django<1.5
17
+ commands = pip install ' django>= 1.4, <1.5'
18
18
pip install -r requirements.txt
19
19
{envpython} setup.py test
20
20
21
21
[testenv:py26_dj15]
22
22
basepython = python2.6
23
- commands = pip install django<1.6
23
+ commands = pip install ' django>= 1.5, <1.6'
24
24
pip install -r requirements.txt
25
25
{envpython} setup.py test
26
26
27
27
[testenv:py27_dj15]
28
28
basepython = python2.7
29
- commands = pip install django<1.6
29
+ commands = pip install ' django>= 1.5, <1.6'
30
30
pip install -r requirements.txt
31
31
{envpython} setup.py test
32
32
33
33
[testenv:py32_dj15]
34
34
basepython = python3.2
35
- commands = pip install django<1.6
35
+ commands = pip install ' django>= 1.5, <1.6'
36
36
pip install -r requirements.txt
37
37
{envpython} setup.py test
38
38
39
39
[testenv:py33_dj15]
40
40
basepython = python3.3
41
- commands = pip install django<1.6
41
+ commands = pip install ' django>= 1.5, <1.6'
42
42
pip install -r requirements.txt
43
43
{envpython} setup.py test
44
44
45
45
[testenv:py26_dj16]
46
46
basepython = python2.6
47
- commands = pip install django == 1.6
47
+ commands = pip install ' django>= 1.6, <1.7 '
48
48
pip install -r requirements.txt
49
49
{envpython} setup.py test
50
50
51
51
[testenv:py27_dj16]
52
52
basepython = python2.7
53
- commands = pip install django == 1.6
53
+ commands = pip install ' django>= 1.6, <1.7 '
54
54
pip install -r requirements.txt
55
55
{envpython} setup.py test
56
56
57
57
[testenv:py32_dj16]
58
58
basepython = python3.2
59
- commands = pip install django == 1.6
59
+ commands = pip install ' django>= 1.6, <1.7 '
60
60
pip install -r requirements.txt
61
61
{envpython} setup.py test
62
62
63
63
[testenv:py33_dj16]
64
64
basepython = python3.3
65
- commands = pip install django == 1.6
65
+ commands = pip install ' django>= 1.6, <1.7 '
66
66
pip install -r requirements.txt
67
67
{envpython} setup.py test
68
68
69
69
[testenv:py27_dj17]
70
70
basepython = python2.7
71
- commands = pip install django == 1.7
71
+ commands = pip install ' django>= 1.7, <1.8 '
72
72
pip install -r requirements.txt
73
73
{envpython} setup.py test
74
74
75
75
[testenv:py32_dj17]
76
76
basepython = python3.2
77
- commands = pip install django == 1.7
77
+ commands = pip install ' django>= 1.7, <1.8 '
78
78
pip install -r requirements.txt
79
79
{envpython} setup.py test
80
80
81
81
[testenv:py33_dj17]
82
82
basepython = python3.3
83
- commands = pip install django == 1.7
83
+ commands = pip install ' django>= 1.7, <1.8 '
84
84
pip install -r requirements.txt
85
85
{envpython} setup.py test
86
86
87
87
[testenv:py34_dj17]
88
88
basepython = python3.4
89
- commands = pip install django == 1.7
89
+ commands = pip install ' django>= 1.7, <1.8 '
90
90
pip install -r requirements.txt
91
91
{envpython} setup.py test
0 commit comments