Skip to content

Commit 4e6ec62

Browse files
authored
Merge pull request #46 from takeflight/python3
Add Python 3 support
2 parents 33f8309 + 43e2829 commit 4e6ec62

File tree

5 files changed

+94
-79
lines changed

5 files changed

+94
-79
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,35 @@ language: python
22

33
python:
44
- "2.7"
5+
- "3.5"
56

67
sudo: false
78

89
env:
9-
- TOX_ENV=py27-django18
10-
- TOX_ENV=py27-django19
11-
- TOX_ENV=py27-django110
12-
- TOX_ENV=py27-djangomaster
10+
- TOX_ENV=django18
11+
- TOX_ENV=django19
12+
- TOX_ENV=django110
13+
- TOX_ENV=djangomaster
1314

1415
matrix:
1516
fast_finish: true
1617
allow_failures:
17-
- env: TOX_ENV=py27-djangomaster
18+
- env: TOX_ENV=djangomaster
1819

1920
addons:
2021
apt:
2122
packages:
2223
- xmlsec1
2324

2425
install:
25-
- pip install tox virtualenv
26+
- pip install --upgrade pip setuptools tox virtualenv
2627

2728
script:
2829
- tox -e $TOX_ENV
2930

3031
after_success:
3132
- pip install codecov
32-
- codecov -e TOX_ENV
33+
- codecov -e TOX_ENV,TRAVIS_PYTHON_VERSION
3334

3435
notifications:
3536
email: false

0 commit comments

Comments
 (0)