Release v0.17.0#927
Merged
Merged
Conversation
Bump version to 0.17.0 and add the changelog entry. This release ships scikit-learn 1.9 support (resolves #926), native Polars support, a JAX DragonNet backend, and the scikit-learn BaseEstimator refactor, among other fixes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v0.17.0
Bumps the version to
0.17.0and adds the changelog entry. This is the release PR — once approved and merged, thev0.17.0GitHub Release will be created, which triggers the PyPI publish workflow (cibuildwheel + trusted publishing).Why now
The released
0.16.0wheel crashes on import under scikit-learn 1.9 (ImportError: cannot import name 'DOUBLE' from 'sklearn.ensemble._forest', #926). The fix is already onmaster(#903 / #907 / #909) but hasn't shipped — cutting this release resolves #926 for all PyPI users. Verified onmaster+ scikit-learn 1.9.0:import causalml.datasetand aCausalRandomForestRegressorfit/predict run clean.Highlights (29 PRs since v0.16.0)
BaseEstimator—clone()/get_params()work (Make meta-learners scikit-learn compliant via BaseEstimator #912)rate_score()with bootstrap CIs (Add Rank-weighted Average Treatment Effect (RATE) metric #887, Addrate_score()with bootstrap confidence intervals and p-values #890); post-fit CIs forBaseTLearner(Add post-fit confidence intervals toBaseTLearnerviastore_bootstrapsandreturn_ci#886)docs/changelog.rst)__init__now stores constructor args verbatim and builds models infit(). Most visibly,XGBRRegressorno longer accepts arbitrary**kwargs— pass XGBoost params via the explicitxgb_kwargs=<dict>argument.Full notes in
docs/changelog.rst. Resolves #926 (on release).