imbalanced-learn: 0.13.0->0.14.0

This commit is contained in:
Philip Wilk
2025-09-07 13:51:24 +01:00
parent 4c64e67bf9
commit fbcbf2cd29

View File

@@ -14,13 +14,12 @@
tensorflow,
threadpoolctl,
pytestCheckHook,
sklearn-compat,
python,
}:
buildPythonPackage rec {
pname = "imbalanced-learn";
version = "0.13.0";
version = "0.14.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -29,7 +28,7 @@ buildPythonPackage rec {
owner = "scikit-learn-contrib";
repo = "imbalanced-learn";
tag = version;
hash = "sha256-osmALi5vTV+3kgldY/VhYkNvpXX11KwJ/dIX/5E7Uhc=";
hash = "sha256-1R7jHOkTO3zK9bkUvvOPQ420ofqIO7J1rqixFEbApR0=";
};
build-system = [
@@ -43,7 +42,6 @@ buildPythonPackage rec {
scikit-learn
scipy
threadpoolctl
sklearn-compat
];
optional-dependencies = {
@@ -82,6 +80,7 @@ buildPythonPackage rec {
disabledTests = [
# Broken upstream test https://github.com/scikit-learn-contrib/imbalanced-learn/issues/1131
"test_estimators_compatibility_sklearn"
"test_balanced_bagging_classifier_with_function_sampler"
];
meta = {