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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ 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).

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

### Fixed
- Restored actual Python 3.14 installability by routing compiled scientific
dependencies onto release lines that publish `cp314` wheels

## [0.1.0b4] - 2026-04-02

Expand Down Expand Up @@ -158,7 +162,8 @@ Initial public alpha release.
- `MLDatasetBuilder` for dataset construction
- `PreprocessingPipeline` for feature transformation

[Unreleased]: https://github.com/stefan-jansen/ml4t-engineer/compare/v0.1.0b4...HEAD
[Unreleased]: https://github.com/ml4t/engineer/compare/v0.1.0b5...HEAD
[0.1.0b5]: https://github.com/ml4t/engineer/compare/v0.1.0b4...v0.1.0b5
Comment on lines +165 to +166
[0.1.0b4]: https://github.com/stefan-jansen/ml4t-engineer/compare/v0.1.0b3...v0.1.0b4
[0.1.0b3]: https://github.com/stefan-jansen/ml4t-engineer/compare/v0.1.0b2...v0.1.0b3
[0.1.0b2]: https://github.com/stefan-jansen/ml4t-engineer/compare/v0.1.0b1...v0.1.0b2
Expand Down
18 changes: 12 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,23 @@ dependencies = [

# Data processing (Polars-first)
"polars>=0.20.0",
"pandas>=2.0.0",
"pandas>=2.0.0; python_version < '3.14'",
"pandas>=3.0.0; python_version >= '3.14'",
"numpy>=1.24.0,<2.5",
"pyarrow>=14.0.0",
"pyarrow>=14.0.0; python_version < '3.14'",
"pyarrow>=23.0.0; python_version >= '3.14'",

# Scientific computing
"scipy>=1.10.0",
"scikit-learn>=1.3.0",
"statsmodels>=0.14.0",
"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'",
"statsmodels>=0.14.0; python_version < '3.14'",
"statsmodels>=0.14.6; python_version >= '3.14'",

# Performance optimization
"numba>=0.57.0",
"numba>=0.57.0; python_version < '3.14'",
"numba>=0.64.0; python_version >= '3.14'",

# Configuration
"pydantic>=2.0.0",
Expand Down
Loading
Loading