Skip to content

Commit 07947ff

Browse files
committed
Add Python 3.4 to travis matrix. Re-add 2.6
1 parent b64029e commit 07947ff

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

.travis.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
language: python
22
python:
3-
- "2.7"
4-
3+
- 2.6
4+
- 2.7
5+
- 3.4
56
env:
67
- DJANGO_VERSION=1.8.5
78
- DJANGO_VERSION=1.6.11
89
- DJANGO_VERSION=1.4.22
9-
10+
matrix:
11+
exclude:
12+
- python: 2.6
13+
env: DJANGO_VERSION=1.8.5
14+
- python: 3.4
15+
env: DJANGO_VERSION=1.4.22
1016
install:
1117
- pip install -q Django==$DJANGO_VERSION
1218
- python setup.py install
13-
14-
# command to run tests
1519
script:
1620
- python setup.py test
1721
- python manage.py test codespeed

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
'Operating System :: OS Independent',
2323
'Programming Language :: Python',
2424
'Programming Language :: Python :: 2',
25+
'Programming Language :: Python :: 2.6',
2526
'Programming Language :: Python :: 2.7',
27+
'Programming Language :: Python :: 3',
28+
'Programming Language :: Python :: 3.4',
2629
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
2730
]
2831
)

0 commit comments

Comments
 (0)