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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to ml4t-engineer are documented in this file.
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0b6] - 2026-05-05

### Fixed
- Lowered the Python 3.14 `scikit-learn` floor from `>=1.8.0` to `>=1.7.2`,
which already publishes `cp314` wheels and avoids unnecessary dependency
conflicts downstream

## [0.1.0b5] - 2026-05-05

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ dependencies = [
"scipy>=1.10.0; python_version < '3.14'",
"scipy>=1.17.0; python_version >= '3.14'",
"scikit-learn>=1.3.0; python_version < '3.14'",
"scikit-learn>=1.8.0; python_version >= '3.14'",
"scikit-learn>=1.7.2; python_version >= '3.14'",
"statsmodels>=0.14.0; python_version < '3.14'",
"statsmodels>=0.14.6; python_version >= '3.14'",

Expand Down
2 changes: 1 addition & 1 deletion src/ml4t/engineer/relationships/correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def compute_correlation_matrix(
# Ensure features are numeric or all-null
non_numeric = []
for feat in features:
is_numeric = np.issubdtype(df[feat].dtype, np.number)
is_numeric = pd.api.types.is_numeric_dtype(df[feat].dtype)
is_all_null = df[feat].dtype == object and df[feat].isna().all()
if not (is_numeric or is_all_null):
non_numeric.append(feat)
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