-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate pandas read_excel engine from xlrd to openpyxl.
-Modify FlowCal.excel_ui.read_table() to first try openpyxl engine when reading an Excel file and then xlrd (which is the only package that can read old-style XLS files). -Expose the pd.read_excel() `engine` parameter to the user from FlowCal.excel_ui.read_table(). -Add new unit test that reads old-style XLS file. -Modify requirements file to require openpyxl package.
- Loading branch information
Showing
4 changed files
with
100 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ scikit-image>=0.10.0 | |
scikit-learn>=0.16.0 | ||
pandas>=0.16.1 | ||
xlrd>=0.9.2 | ||
openpyxl>=2.4.1 | ||
XlsxWriter>=0.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.