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():
66
77 converters = {
88 "pandas.io.excel.ExcelFile" : lambda x : x .io ,
9+ "pandas.io.excel._base.ExcelFile" : lambda x : x .io ,
910 "builtins.dict_keys" : lambda x : sorted (x ),
1011 "builtins.dict_items" : lambda x : sorted (x ),
1112 "bs4.BeautifulSoup" : lambda x : str (x ),
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ requests~=2.26.0
1717seaborn ~= 0.11.2
1818sqlalchemy ~= 1.4.23
1919xlrd ~= 2.0.1
20+ openpyxl ~= 3.0.7
2021
2122# test-utils deps
2223pytest ~= 6.2.5
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ def test_check_keys_exotic(sct):
180180
181181
182182def test_non_dillable ():
183- # xlrd needed for Excel support
183+ # xlrd and openpyxl needed for Excel support
184184 code = "xl = pd.ExcelFile('battledeath.xlsx')"
185185 res = helper .run (
186186 {
You can’t perform that action at this time.
0 commit comments