Skip to content

Commit 3a2ab41

Browse files
hugovkuntitaker
authored andcommitted
Update supported Python versions (untitaker#34)
* Drop support for EOL Python 2.6 * Add Trove classifiers and python_requires
1 parent 97f8a63 commit 3a2ab41

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ os: linux
33
language: python
44

55
python:
6-
- 2.6
76
- 2.7
87
- pypy
98
- 3.4

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,15 @@
2424
long_description=open('README.rst').read(),
2525
packages=find_packages(exclude=['tests.*', 'tests']),
2626
include_package_data=True,
27+
classifiers=[
28+
'License :: OSI Approved :: MIT License',
29+
'Programming Language :: Python :: 2',
30+
'Programming Language :: Python :: 2.7',
31+
'Programming Language :: Python :: 3',
32+
'Programming Language :: Python :: 3.4',
33+
'Programming Language :: Python :: 3.5',
34+
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: Implementation :: CPython',
36+
],
37+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
2738
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{26,27,py,33,34,35}-{test,stylecheck}
2+
envlist = py{27,py,34,35,36}-{test,stylecheck}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)