Unverified Commit db9b9acf authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

imbalanced-learn: 0.13.0->0.14.0 (#440924)

parents 2529b877 fbcbf2cd
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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 = {