Skip to content

Commit 9da3453

Browse files
committed
Drop explicit support for py32 and py33
1 parent 22a4efb commit 9da3453

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ language: python
22
python:
33
- 2.6
44
- 2.7
5-
- 3.2
6-
- 3.3
75
- 3.4
6+
- 3.5
87
- pypy
98

109
install:

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
'pytest>=2.4',
1414
],
1515
extras_require={
16-
':python_version=="2.6" or python_version=="2.7" or '
17-
'python_version=="3.2"': ['mock'],
16+
':python_version=="2.6" or python_version=="2.7"': ['mock'],
1817
},
1918
url='https://github.com/pytest-dev/pytest-mock/',
2019
license='LGPL',
@@ -31,9 +30,8 @@
3130
'Programming Language :: Python :: 2.6',
3231
'Programming Language :: Python :: 2.7',
3332
'Programming Language :: Python :: 3',
34-
'Programming Language :: Python :: 3.2',
35-
'Programming Language :: Python :: 3.3',
3633
'Programming Language :: Python :: 3.4',
34+
'Programming Language :: Python :: 3.5',
3735
'Topic :: Software Development :: Testing',
3836
]
3937
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
# note that tox expects interpreters to be found at C:\PythonXY,
33
# with XY being python version ("27" or "34") for instance
4-
envlist = py26, py27, py32, py33, py34
4+
envlist = py26, py27, py34, py35
55

66
[testenv]
77
commands = py.test test_pytest_mock.py

0 commit comments

Comments
 (0)