Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to scikit-learn 1.6 estimator tag changes #11021

Merged
merged 15 commits into from
Dec 4, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
ignore pylint warning
jameslamb committed Nov 26, 2024
commit abfc6a6409ad2b508c5abc1c4bab61cd7efd0130
2 changes: 1 addition & 1 deletion python-package/xgboost/sklearn.py
Original file line number Diff line number Diff line change
@@ -840,7 +840,7 @@ def __sklearn_tags__(self) -> _sklearn_Tags:
# take whatever tags are provided by BaseEstimator, then modify
# them with XGBoost-specific values
return self._update_sklearn_tags_from_dict(
tags=XGBModelBase.__sklearn_tags__(self),
tags=XGBModelBase.__sklearn_tags__(self), # pylint: disable=no-member
tags_dict=self._more_tags(),
)


Unchanged files with check annotations Beta

FROM i386/debian:sid

Check warning on line 1 in tests/ci_build/Dockerfile.i386

GitHub Actions / Build 32-bit

Base image platform does not match expected target platform

InvalidBaseImagePlatform: Base image i386/debian:sid was pulled with platform "linux/386", expected "linux/amd64" for current build
ENV DEBIAN_FRONTEND=noninteractive
SHELL ["/bin/bash", "-c"]