File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ def get_manual_converters():
6
6
7
7
converters = {
8
8
"pandas.io.excel.ExcelFile" : lambda x : x .io ,
9
+ "pandas.io.excel._base.ExcelFile" : lambda x : x .io ,
9
10
"builtins.dict_keys" : lambda x : sorted (x ),
10
11
"builtins.dict_items" : lambda x : sorted (x ),
11
12
"bs4.BeautifulSoup" : lambda x : str (x ),
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ requests~=2.26.0
17
17
seaborn ~= 0.11.2
18
18
sqlalchemy ~= 1.4.23
19
19
xlrd ~= 2.0.1
20
+ openpyxl ~= 3.0.7
20
21
21
22
# test-utils deps
22
23
pytest ~= 6.2.5
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ def test_check_keys_exotic(sct):
180
180
181
181
182
182
def test_non_dillable ():
183
- # xlrd needed for Excel support
183
+ # xlrd and openpyxl needed for Excel support
184
184
code = "xl = pd.ExcelFile('battledeath.xlsx')"
185
185
res = helper .run (
186
186
{
You can’t perform that action at this time.
0 commit comments