From 94b96b9bf6be4af95f4bdc83f321db95379ba1c8 Mon Sep 17 00:00:00 2001 From: Suvigya Date: Wed, 8 Jan 2020 17:41:32 +0530 Subject: [PATCH] default set to openpyxl(#28546) --- pandas/io/excel/_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/io/excel/_base.py b/pandas/io/excel/_base.py index 04015a08bce2f..537ac04882bdc 100644 --- a/pandas/io/excel/_base.py +++ b/pandas/io/excel/_base.py @@ -780,7 +780,7 @@ def close(self): class ExcelFile: """ Class for parsing tabular excel sheets into DataFrame objects. - Uses xlrd. See read_excel for more documentation + Uses openpyxl. See read_excel for more documentation Parameters ---------- @@ -801,7 +801,7 @@ class ExcelFile: def __init__(self, io, engine=None): if engine is None: - engine = "xlrd" + engine = "openpyxl" if engine not in self._engines: raise ValueError(f"Unknown engine: {engine}")