Skip to content

Commit 3494b48

Browse files
committed
Add py35 to .travis.yml and remove support for py32 and py33
Travis seems to have some issue with Python 3.2 and since afaik Python 3.2 and 3.3 are not actually used we just remove them.
1 parent 281b8f9 commit 3494b48

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ language: python
44
python:
55
- 2.6
66
- 2.7
7-
- 3.2
8-
- 3.3
97
- 3.4
8+
- 3.5
109
- pypy
1110

1211
install:

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ def _read(fname):
4646
'Programming Language :: Python :: 2.6',
4747
'Programming Language :: Python :: 2.7',
4848
'Programming Language :: Python :: 3',
49-
'Programming Language :: Python :: 3.2',
50-
'Programming Language :: Python :: 3.3',
5149
'Programming Language :: Python :: 3.4',
5250
'Programming Language :: Python :: 3.5',
5351
'Topic :: Software Development :: Testing',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py32, py33, py34, py35
2+
envlist = py26, py27, py34, py35
33

44
[testenv]
55
commands = py.test tests/test_pytest_datafiles.py

0 commit comments

Comments
 (0)