Skip to content

Commit cba5e63

Browse files
committed
Merge pull request noirbizarre#41 from thedrow/patch-1
Build process improvements
2 parents a3f6d09 + f0e46f6 commit cba5e63

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.travis.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,26 @@ python:
44
- 2.7
55
- 3.2
66
- 3.3
7+
- 3.4
8+
- "pypy"
79
env:
810
- DJANGO='django>=1.4,<1.5'
911
- DJANGO='django>=1.5,<1.6'
10-
- DJANGO='django>=1.6'
12+
- DJANGO='django>=1.6<1.7'
13+
- DJANGO='https://www.djangoproject.com/download/1.7c1/tarball/'
1114
matrix:
1215
exclude:
1316
- python: 3.2
1417
env: DJANGO='django>=1.4,<1.5'
1518
- python: 3.3
1619
env: DJANGO='django>=1.4,<1.5'
20+
- python: 3.4
21+
env: DJANGO='django>=1.4,<1.5'
22+
allow_failures:
23+
- env: DJANGO='https://www.djangoproject.com/download/1.7c1/tarball/'
1724
install:
18-
- pip install $DJANGO --use-mirrors
19-
- pip install -r requirements/travis.pip --use-mirrors
25+
- pip install $DJANGO
26+
- pip install -r requirements/travis.pip
2027
script:
2128
- make coverage pep8
2229
after_success:

0 commit comments

Comments
 (0)