Skip to content
This repository has been archived by the owner on May 4, 2020. It is now read-only.

Commit

Permalink
Drop support for EOL Python 3.3
Browse files Browse the repository at this point in the history
Python 3.3 is end of life. It is no longer receiving bug fixes, including for
security issues. Python 3.3 went EOL on 2017-09-29. For additional details on
support Python versions, see:

https://devguide.python.org/#status-of-python-branches

For details on the Python 3.3 release schedule, see:

https://www.python.org/dev/peps/pep-0398/

Removing support for EOL Pythons will reduce testing and maintenance resources.
  • Loading branch information
jdufresne committed Jan 6, 2018
1 parent 786180e commit d8c0f43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"

# command to install dependencies
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
DESCRIPTION = (
'Library to create spreadsheet files compatible with '
'MS Excel 97/2000/XP/2003 XLS files, '
'on any platform, with Python 2.7, 3.3+'
'on any platform, with Python 2.7, 3.4+'
)

CLASSIFIERS = [
Expand All @@ -21,7 +21,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand All @@ -48,5 +47,6 @@
classifiers=CLASSIFIERS,
packages=find_packages(),
zip_safe=False,
include_package_data=True
include_package_data=True,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py35, py34, py33, py27, py26
envlist = py36, py35, py34, py27

[testenv]
commands =
Expand Down

0 comments on commit d8c0f43

Please sign in to comment.