Skip to content

Commit 65cd449

Browse files
committed
Remove support for EOL Python 3.3
Python 3.3 is EOL. It is no longer receiving bug fixes, including for security issues. Python 3.3 has been EOL since 2017-09-29. For additional details, see: https://devguide.python.org/#status-of-python-branches Additionally, pytest has dropped support for Python 3.3 in a recent version, causing test failures. See: https://docs.pytest.org/en/latest/changelog.html#pytest-3-3-0-2017-11-23
1 parent 45b6467 commit 65cd449

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,23 @@ python: 3.5
44
env:
55
- TOXENV=flake8
66
- TOXENV=py27
7-
- TOXENV=py33
87
- TOXENV=py34
98
- TOXENV=py35
109

1110
matrix:
1211
fast_finish: true
1312

1413
include:
15-
- python: 3.6-dev
14+
- python: 3.6
1615
env: TOXENV=py36
1716
- python: 3.7-dev
1817
env: TOXENV=py37
1918
- python: pypy-5.4
2019
env: TOXENV=pypy_54
21-
- python: pypy3.3-5.2-alpha1
22-
env: TOXENV=pypy33
2320

2421
allow_failures:
2522
- env: TOXENV=py37
2623
- env: TOXENV=pypy_54
27-
- env: TOXENV=pypy33
2824

2925
install:
3026
- pip install tox codecov

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Enhancements
55

66
* New formatting option "--indent_after_first" (pr345, by johshoff).
77

8+
Internal Changes
9+
10+
* Remove support for Python 3.3.
811

912
Release 0.2.4 (Sep 27, 2017)
1013
----------------------------

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def get_version():
9292
'Programming Language :: Python :: 2',
9393
'Programming Language :: Python :: 2.7',
9494
'Programming Language :: Python :: 3',
95-
'Programming Language :: Python :: 3.3',
9695
'Programming Language :: Python :: 3.4',
9796
'Programming Language :: Python :: 3.5',
9897
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22
skip_missing_interpreters = True
33
envlist =
44
py27
5-
py33
65
py34
76
py35
87
py36
98
py37
109
pypy_54
11-
pypy33
1210
flake8
1311

1412
[testenv]

0 commit comments

Comments
 (0)