This commit is contained in:
2017-08-27 03:29:44 -04:00
parent a50ff92ff2
commit 5dd74c0104
4 changed files with 4 additions and 9 deletions
-1
View File
@@ -1,6 +1,5 @@
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
+2 -5
View File
@@ -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
View File
@@ -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'
-1
View File
@@ -5,7 +5,6 @@
import json
import unittest
import sys
import os
import datetime