PsychoinformaticsLab / pliers

Automated feature extraction in Python
https://pliers.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
293 stars 68 forks source link

Opening excel files in DictionaryExtractor not compatible with newer pandas version #449

Closed adelavega closed 3 years ago

adelavega commented 3 years ago
/usr/local/lib/python3.6/site-packages/pandas/io/excel.py in __init__(self, io, **kwds)
    367
    368         if engine is not None and engine != 'xlrd':
--> 369             raise ValueError("Unknown engine: {engine}".format(engine=engine))
    370
    371         # If io is a url, want to keep the data as bytes so can't pass

ValueError: Unknown engine: openpyxl.

Looks like we need to change the engine to xlrd to fix this issue