Skip to content

Commit 088762b

Browse files
committed
Indicate likely minimum version.
I started this a couple of years ago and so was using a 1.3ish release. Looking through the repository, it looks like the APIs I'm using are stable since then.
1 parent 63cb3a7 commit 088762b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel/_odfreader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, filepath_or_buffer):
1616
from odf.opendocument import load as document_load
1717
from odf.table import Table
1818
except ImportError:
19-
raise ImportError("Install odfpy for OpenDocument support")
19+
raise ImportError("Install odfpy >= 1.3 for OpenDocument support")
2020

2121
self.filepath_or_buffer = filepath_or_buffer
2222
self.document = document_load(filepath_or_buffer)

0 commit comments

Comments
 (0)