Skip to content

Commit 41e5ff3

Browse files
committed
Run unittests against Python 3.3, Python 3.5, PyPy2 and PyPy3.
1 parent e13cc4a commit 41e5ff3

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ sudo: false
22
language: python
33
python:
44
- "2.7"
5+
- "3.3"
56
- "3.4"
7+
- "3.5"
8+
- pypy
9+
- pypy3
610
install:
711
- pip install -e .
812
- pip install codecov

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ChangeLog
55
------------------
66

77
* Add default ``isort`` config.
8+
* Activate tests on Python 3.3, 3.5, PyPy2 and PyPy3.
89

910
1.4.1 (2016-10-31)
1011
------------------

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ def get_long_description():
8282
'Programming Language :: Python :: 2',
8383
'Programming Language :: Python :: 2.7',
8484
'Programming Language :: Python :: 3',
85+
'Programming Language :: Python :: 3.3',
8586
'Programming Language :: Python :: 3.4',
87+
'Programming Language :: Python :: 3.5',
88+
'Programming Language :: Python :: Implementation :: PyPy',
8689
'Topic :: Software Development :: Libraries :: Python Modules',
8790
'Topic :: Internet',
8891
'Topic :: System :: Distributed Computing',

0 commit comments

Comments
 (0)