Skip to content

Commit

Permalink
Replaced vendored unicodecsv by a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Alla committed Jan 15, 2017
1 parent 3d44bde commit 6bc9bb4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 199 deletions.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
'tablib', 'tablib.formats',
'tablib.packages',
'tablib.packages.omnijson',
'tablib.packages.unicodecsv',
'tablib.packages.xlwt',
'tablib.packages.xlrd',
'tablib.packages.odf',
Expand All @@ -61,6 +60,9 @@
'tablib.packages.dbfpy3'
]

install = [
'unicodecsv',
]

setup(
name='tablib',
Expand Down Expand Up @@ -91,4 +93,5 @@
'Programming Language :: Python :: 3.6',
],
tests_require=['pytest'],
requires=install,
)
2 changes: 1 addition & 1 deletion tablib/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
from tablib.packages import openpyxl
from tablib.packages.odf import opendocument, style, text, table

from tablib.packages import unicodecsv as csv
import unicodecsv as csv
import tablib.packages.dbfpy as dbfpy

unicode = unicode
Expand Down
197 changes: 0 additions & 197 deletions tablib/packages/unicodecsv/__init__.py

This file was deleted.

0 comments on commit 6bc9bb4

Please sign in to comment.