Skip to content

Commit 1732d75

Browse files
committed
Drop support for EOL Python 3.3 in pluggy 0.6
1 parent 3a8bb99 commit 1732d75

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ matrix:
99
env: TOXENV=docs
1010
- python: '2.7'
1111
env: TOXENV=py27-pytestrelease
12-
- python: '3.3'
13-
env: TOXENV=py33-pytestrelease
1412
- python: '3.4'
1513
env: TOXENV=py34-pytestrelease
1614
- python: '3.5'

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
0.6.0
22
-----
33

4-
- Drop support for EOL Python 2.6 in PR `#103`_.
4+
- Drop support for EOL Python 2.6 and 3.3 in PR `#103`_.
55

66
.. _#103: https://github.com/pytest-dev/pluggy/pull/103
77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
'Programming Language :: Python :: Implementation :: CPython',
1515
'Programming Language :: Python :: Implementation :: PyPy'] + [
1616
('Programming Language :: Python :: %s' % x) for x in
17-
'2 2.7 3 3.3 3.4 3.5 3.6'.split()]
17+
'2 2.7 3 3.4 3.5 3.6'.split()]
1818

1919
with open('README.rst') as fd:
2020
long_description = fd.read()

0 commit comments

Comments
 (0)