We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8850b5 commit 6f94b69Copy full SHA for 6f94b69
pyproject.toml
@@ -64,6 +64,7 @@ SQLAlchemy = ">=2.0.12"
64
types-python-dateutil = ">=2.8.19"
65
beautifulsoup4 = ">=4.12.2"
66
html5lib = ">=1.1"
67
+python-calamine = "0.2.0"
68
69
[build-system]
70
requires = ["poetry-core>=1.0.0"]
tests/test_io.py
@@ -961,6 +961,16 @@ def test_read_excel() -> None:
961
),
962
pd.DataFrame,
963
)
964
+ check(
965
+ assert_type(
966
+ pd.read_excel(
967
+ path,
968
+ engine="calamine",
969
+ ),
970
+ pd.DataFrame,
971
972
973
+ )
974
if TYPE_CHECKING_INVALID_USAGE:
975
pd.read_excel(path, names="abcd") # type: ignore[call-overload] # pyright: ignore[reportArgumentType]
976
0 commit comments