mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 06:56:13 +00:00
drop 2.6
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
language: python
|
||||
python:
|
||||
- 2.6
|
||||
- 2.7
|
||||
- 3.3
|
||||
- 3.4
|
||||
|
||||
@@ -47,12 +47,10 @@ install = [
|
||||
'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*[\'"]([^\'"]*)[\'"]',
|
||||
@@ -75,7 +73,6 @@ setup(
|
||||
'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',
|
||||
|
||||
+2
-2
@@ -18,8 +18,8 @@ from tablib.compat import OrderedDict, unicode
|
||||
|
||||
|
||||
__title__ = 'tablib'
|
||||
__version__ = '0.11.5'
|
||||
__build__ = 0x001104
|
||||
__version__ = '0.12.0'
|
||||
__build__ = 0x001200
|
||||
__author__ = 'Kenneth Reitz'
|
||||
__license__ = 'MIT'
|
||||
__copyright__ = 'Copyright 2017 Kenneth Reitz'
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
import json
|
||||
import unittest
|
||||
import sys
|
||||
import os
|
||||
|
||||
import datetime
|
||||
|
||||
|
||||
Reference in New Issue
Block a user