Commit a44d4252 authored by sim's avatar sim

[FIX] CSV parser regression

parent c9254ca2
......@@ -16,7 +16,8 @@ class CSVParser(Parser):
def parse(self, fp=None):
fp = fp or self._file
df = pandas.read_csv(fp, dtype=object, skip_blank_lines=True)
df = pandas.read_csv(fp, dtype=object, skip_blank_lines=True, sep=None,
na_values=[], keep_default_na=False)
# Return a generator of dictionaries with column labels as keys,
# filtering out empty rows
......
......@@ -28,7 +28,7 @@ RandomWords==0.1.12
ujson==1.35
umalqurra==0.2 # arabic calendars (?? why use ??)
networkx==1.11
pandas==0.18.0
pandas==0.21.0
six==1.10.0
lxml==3.5.0
requests-futures==0.9.7
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment