Fastexcel

Latest version: v0.13.0

Safety actively analyzes 715032 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 5

0.13.0

What's Changed
* chore(deps): update ruff requirement from <0.9,>=0.8 to >=0.8,<0.10 by dependabot in https://github.com/ToucanToco/fastexcel/pull/319
* chore: drop support for Python 3.8 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/323
* chore(deps): bump log from 0.4.22 to 0.4.25 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/324
* feat(deps): upgrade pyo3 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/325
* chore(deps): bump arrow from 54.0.0 to 54.1.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/328
* chore(deps): bump arrow from 54.1.0 to 54.2.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/330
* feat!(excelreader): only load dtypes for columns specified via `use_columns` by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/329
* chore(deps): bump log from 0.4.25 to 0.4.26 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/331
* chore: v0.13.0 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/332


**Full Changelog**: https://github.com/ToucanToco/fastexcel/compare/v0.12.1...v0.13.0

0.12.1

What's Changed
* feat: forbid schema_sample_rows=0 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/304
* chore(deps): bump pyo3 from 0.22.4 to 0.22.5 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/305
* chore(deps): update ruff requirement from <0.7,>=0.6.5 to >=0.6.5,<0.8 by dependabot in https://github.com/ToucanToco/fastexcel/pull/306
* feat: fallback to string if dtype cannot be infered by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/307
* chore(deps): bump arrow from 53.1.0 to 53.2.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/309
* ci: add Python 3.13 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/254
* chore(deps): update pytest-benchmark requirement from <5,>=4.0.0 to >=4.0.0,<6 by dependabot in https://github.com/ToucanToco/fastexcel/pull/310
* chore(deps): bump pyo3 from 0.22.5 to 0.22.6 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/314
* chore(deps): update ruff requirement from <0.8,>=0.7 to >=0.7,<0.9 by dependabot in https://github.com/ToucanToco/fastexcel/pull/315
* chore(deps): bump chrono from 0.4.38 to 0.4.39 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/317
* chore(deps): bump rstest from 0.23.0 to 0.24.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/318
* consider `NUM!` error type as `None` by sphuber in https://github.com/ToucanToco/fastexcel/pull/321
* chore: v0.12.1 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/322

New Contributors
* sphuber made their first contribution in https://github.com/ToucanToco/fastexcel/pull/321

**Full Changelog**: https://github.com/ToucanToco/fastexcel/compare/v0.12.0...v0.12.1

0.12.0

* Support for excel tables
* A single dtype that will be used for all columns can now be specified when loading a sheet
* Sheets now have a `visible` attribute indicating wether they're visible, hidden or very hidden

Breaking changes

* The `header_row` parameter now represents the exact index of a row in a sheet. It is more explicit this way, but may break existing code relying on `calamine`'s legacy row skipping behaviour (if empty rows were found at the beginning of the sheet)

All changes

* chore(deps): bump pretty_assertions from 1.4.0 to 1.4.1 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/286
* feat(ExcelSheet): added a "visible" attribute by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/285
* feat(ci): publish sdist to PyPI as well by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/284
* feat: table support for Excel (XLSX) sheets by wdoppenberg in https://github.com/ToucanToco/fastexcel/pull/282
* feat: introduce ExcelTable object by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/287
* chore(deps): bump rstest from 0.22.0 to 0.23.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/291
* build: add license and other stuff by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/290
* chore(deps): update pre-commit requirement from <4,>=2.20.0 to >=2.20.0,<5 by dependabot in https://github.com/ToucanToco/fastexcel/pull/294
* feat: mimic excel behavior to convert float to string by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/292
* chore(deps): bump calamine from 0.25.0 to 0.26.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/295
* chore(deps): bump calamine from 0.26.0 to 0.26.1 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/296
* build(deps): bump arrow to 53.1.0 and pyo3 to 0.22.3 by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/298
* build(deps): clean Cargo.toml and update lock file by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/300
* feat!: `header_row` is now the exact index of the row when loading a sheet by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/297
* feat: add support for one dtype for all columns by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/299
* chore: v0.12.0 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/301

New Contributors
* wdoppenberg made their first contribution in https://github.com/ToucanToco/fastexcel/pull/282

**Full Changelog**: https://github.com/ToucanToco/fastexcel/compare/v0.11.6...v0.12.0

0.11.6

What's Changed
* chore(deps): bump arrow from 52.1.0 to 52.2.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/272
* chore(deps): bump rstest from 0.21.0 to 0.22.0 in the prod-deps group by dependabot in https://github.com/ToucanToco/fastexcel/pull/274
* chore(deps): update ruff requirement from <0.6,>=0.5.0 to >=0.5.0,<0.7 by dependabot in https://github.com/ToucanToco/fastexcel/pull/276
* fix: null column should be nullable by PrettyWood in https://github.com/ToucanToco/fastexcel/pull/279
* chore: v0.11.6 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/280


**Full Changelog**: https://github.com/ToucanToco/fastexcel/compare/v0.11.5...v0.11.6

0.11.5

**Full Changelog**: https://github.com/ToucanToco/fastexcel/compare/v0.11.4...v0.11.5

0.11.2

What's Changed
* fix: respect provided column ordering in use_columns when loading a sheet eagerly by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/262
* chore: v0.11.2 by lukapeschke in https://github.com/ToucanToco/fastexcel/pull/264


**Full Changelog**: https://github.com/ToucanToco/fastexcel/compare/v0.11.1...v0.11.2

Page 1 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.