This PR incorporates typing-extensions into fastexcel's dependencies, addressing Issue #226.
Outcomes
This update resolves a subtle bug in the polars library's read_excel function, specifically when utilizing the calamine engine.
Before this change, attempting to use the calamine engine would trigger an erroneous message from polars, indicating that fastexcel was not installed, despite its presence. This issue stemmed from the absence of the typing-extensions dependency.
Purpose of This PR
This PR incorporates
typing-extensions
intofastexcel
's dependencies, addressing Issue #226.Outcomes
This update resolves a subtle bug in the
polars
library'sread_excel
function, specifically when utilizing thecalamine
engine.Before this change, attempting to use the
calamine
engine would trigger an erroneous message frompolars
, indicating thatfastexcel
was not installed, despite its presence. This issue stemmed from the absence of thetyping-extensions
dependency.Testing
All test are passing after running
make test
.