You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To use pandas.read_excel and pandas.DataFrame.to_excel we need xlrd.
xlrd is EOL, and can be replaced with OpenPyXL Do you plan this migration ?
Moreover, now xlrd yield warnings with python 3.7
xlrd/xlsx.py:266: PendingDeprecationWarning: This method will be removed in future versions. Use 'tree.iter()' or 'list(tree.iter())' instead.
for elem in self.tree.iter() if Element_has_iter else self.tree.getiterator():
xlrd/xlsx.py:312: PendingDeprecationWarning: This method will be removed in future versions. Use 'tree.iter()' or 'list(tree.iter())' instead.
for elem in self.tree.iter() if Element_has_iter else self.tree.getiterator()
The text was updated successfully, but these errors were encountered:
Hi @MikHulk, yes, we are aware of that problem. See #28547. But note that xlrd is not required, it's only the default (and which we need to change), but you can already use openpyxl instead.
Hello,
To use
pandas.read_excel
andpandas.DataFrame.to_excel
we need xlrd.xlrd is EOL, and can be replaced with OpenPyXL Do you plan this migration ?
Moreover, now xlrd yield warnings with python 3.7
The text was updated successfully, but these errors were encountered: