Skip to content

Commit

Permalink
chore(deps): bump calamine from 0.25.0 to 0.26.0 in the prod-deps gro…
Browse files Browse the repository at this point in the history
…up (#295)

* chore(deps): bump calamine from 0.25.0 to 0.26.0 in the prod-deps group

Bumps the prod-deps group with 1 update: [calamine](https://github.com/tafia/calamine).


Updates `calamine` from 0.25.0 to 0.26.0
- [Changelog](https://github.com/tafia/calamine/blob/master/Changelog.md)
- [Commits](tafia/calamine@v0.25.0...v0.26.0)

---
updated-dependencies:
- dependency-name: calamine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix(excelreader): import calamine::ReaderRef

Signed-off-by: Luka Peschke <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Luka Peschke <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Luka Peschke <[email protected]>
  • Loading branch information
dependabot[bot] and lukapeschke authored Oct 9, 2024
1 parent 5383632 commit 0332581
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 72 deletions.
107 changes: 37 additions & 70 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ name = "fastexcel"
crate-type = ["cdylib"]

[dependencies]
calamine = { version = "0.25.0", features = ["dates"] }
calamine = { version = "0.26.0", features = ["dates"] }
chrono = { version = "0.4.38", default-features = false }
# NOTE: "extension-module" is actually required, see comments on features below
pyo3 = { version = "0.21.2", features = ["abi3-py38"] }
Expand Down
2 changes: 1 addition & 1 deletion src/types/python/excelreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use arrow::{pyarrow::ToPyArrow, record_batch::RecordBatch};
use pyo3::{prelude::PyObject, pyclass, pymethods, Bound, IntoPy, PyAny, PyResult, Python};

use calamine::{
open_workbook_auto, open_workbook_auto_from_rs, Data, DataRef, Range, Reader,
open_workbook_auto, open_workbook_auto_from_rs, Data, DataRef, Range, Reader, ReaderRef,
Sheet as CalamineSheet, Sheets, Table,
};

Expand Down

0 comments on commit 0332581

Please sign in to comment.