Skip to content

Prefer XLSX plugin when reading XLSX files. #99

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

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .moban.d/custom_travis.yml.jj2
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ env:
{%endblock%}
{%block custom_python_versions%}
python:
- 3.9
- 3.8
- 3.7
- 3.6
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ language: python
notifications:
email: false
python:
- 3.9
- 3.8
- 3.7
- 3.6
Expand Down
4 changes: 2 additions & 2 deletions pyexcel_io/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
AVAILABLE_READERS = {
constants.FILE_FORMAT_CSV: [IO_ITSELF],
constants.FILE_FORMAT_XLS: [XLS_PLUGIN],
constants.FILE_FORMAT_XLSX: [XLS_PLUGIN, XLSX_PLUGIN],
constants.FILE_FORMAT_XLSM: [XLS_PLUGIN, XLSX_PLUGIN],
constants.FILE_FORMAT_XLSX: [XLSX_PLUGIN, XLS_PLUGIN],
constants.FILE_FORMAT_XLSM: [XLSX_PLUGIN, XLS_PLUGIN],
constants.FILE_FORMAT_ODS: [ODS_PLUGIN, ODS3_PLUGIN, ODSR_PLUGIN],
constants.FILE_FORMAT_TSV: [IO_ITSELF],
constants.FILE_FORMAT_CSVZ: [IO_ITSELF],
Expand Down