Drop python 2.6 support.

Drop python 2.6 support
This commit is contained in:
Brian Korty 2015-05-06 16:10:02 -04:00
parent 4abbd63b2f
commit 52b1248693
2 changed files with 0 additions and 8 deletions

View file

@ -1,13 +1,11 @@
language: python
python:
- 2.6
- 2.7
- pypy
- 3.2
- 3.3
- 3.4
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
- pip install -r requirements.txt -r test-requirements.txt
script: nosetests
after_success:

View file

@ -15,11 +15,6 @@ def read_requirements_file(filename):
requirements = read_requirements_file('requirements.txt')
test_requirements = read_requirements_file('test-requirements.txt')
if sys.version_info < (3, ):
requirements.append('six>=1.7,<2.0')
test_requirements.append('mock>=1.0.1,<2.0')
if sys.version_info < (2, 7):
test_requirements.append('unittest2==0.5.1')
setup(
name='sprockets.clients.cassandra',
@ -41,7 +36,6 @@ setup(
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',