Remove support for python 2.6

This commit is contained in:
rbas
2014-10-23 23:48:32 +02:00
parent 68b40f1819
commit 2975c42cfa
2 changed files with 10 additions and 4 deletions

View File

@@ -1,6 +1,5 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"

View File

@@ -20,5 +20,12 @@ setup(
packages=['imbox'],
package_dir={'imbox': 'imbox'},
zip_safe=False,
install_requires=['six',],
install_requires=['six'],
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
),
)