Skip to content

Commit

Permalink
drop 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethreitz committed Aug 27, 2017
1 parent a50ff92 commit 5dd74c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,10 @@
'unicodecsv',
'xlrd',
'xlwt',
'pyyaml'
'pyyaml',
'pandas'
]

# only require Pandas if Python isn't 2.6.
if not (sys.version_info[0] == 2 and sys.version_info[1] == 6):
install.append('pandas')

with open('tablib/core.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
Expand All @@ -75,7 +73,6 @@
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down
4 changes: 2 additions & 2 deletions tablib/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@


__title__ = 'tablib'
__version__ = '0.11.5'
__build__ = 0x001104
__version__ = '0.12.0'
__build__ = 0x001200
__author__ = 'Kenneth Reitz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2017 Kenneth Reitz'
Expand Down
1 change: 0 additions & 1 deletion test_tablib.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import json
import unittest
import sys
import os

import datetime

Expand Down

0 comments on commit 5dd74c0

Please sign in to comment.