Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ adheres to [Semantic Versioning](https://semver.org/).
decision narrative, avoiding a redundant full-width context pass.

### Fixed
- The minimum supported numpy is now 1.22. The numpy 1.21.6 wheel bundles an
OpenBLAS that segfaults on BLAS-backed matrix multiplies on current Apple
Silicon Macs regardless of `OPENBLAS_NUM_THREADS`, so installs at the old
floor could crash in any code path that multiplies float matrices
(for example semantic similarity scoring on larger inputs).
- Median imputation no longer crashes with `OverflowError` on nullable integer
columns (`Int8`/`Int16`/`Int32`/`UInt*`) containing missing values under
numpy 2.5+. Affects `impute="median"`/`"auto"`, the default missing-value
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ classifiers = [
]
dependencies = [
"pandas>=1.5,<3",
"numpy>=1.21",
"numpy>=1.22",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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

Loading