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

Commit

Permalink
Merge pull request #115 from jdufresne/py33
Browse files Browse the repository at this point in the history
Drop support for EOL Python 3.3
  • Loading branch information
cjw296 authored Jan 8, 2018
2 parents ca3fcc0 + d8c0f43 commit 64cac01
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 64cac01

Please sign in to comment.