-
Notifications
You must be signed in to change notification settings - Fork 6
Unittests relying on the xlrd lib fail -> skip xlrd ? #915
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
can't we replace xlrd by openpyxl in .travis.yml and avoid changing anything else in our tests? |
We also need to replace The question is more about do we still want to support the old |
…Excel files with the standard .xlsx extension
I don't know. In any case, it does not cost us much to leave xlrd in larrayenv but we can get away without adding an explicit test for .xls files I think. |
…Excel files with the standard .xlsx extension
OK |
…Excel files with the standard .xlsx extension
- use openpyxl engine instead of xlrd in PandasExcelHandler to read Excel files with the standard .xlsx extension - use xlsxwriter by default if installed in PandasExcelHandler - dropped tests for blank cells when reading Excel files with openpyxl - added xlrd in travis.yml to fix error for Python 3.6 (pandas is asking to install xlrd)
- use openpyxl engine instead of xlrd in PandasExcelHandler to read Excel files with the standard .xlsx extension - use xlsxwriter by default if installed in PandasExcelHandler - dropped tests for blank cells when reading Excel files with openpyxl - added xlrd in travis.yml to fix error for Python 3.6 (pandas is asking to install xlrd)
The
xlrd
does no longer support other extension than.xls
for Excel files.From this link:
@gdementen Do we remove
xlrd
from the installed libraries in the .travis.yml script and skip unittest relying onxlrd
?Or we adapt the unittests ?
The text was updated successfully, but these errors were encountered: