Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 815a11f88713
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0bff5f6438ff
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 28, 2019

  1. Revert "python: imbalanced-learn: 0.4.3 -> 0.5.0"

    This reverts commit 47c7ad5.
    
    frozen version was not meant to be bumped
    Jonathan Ringer committed Nov 28, 2019
    Copy the full SHA
    0bff5f6 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/imbalanced-learn/0.4.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/imbalanced-learn/0.4.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "imbalanced-learn";
version = "0.5.0";
version = "0.4.3";

src = fetchPypi {
inherit pname version;
sha256 = "5df760537886678ef9e25f5bad96d194c5fc66f62de84488069acf5d4b0119d5";
sha256 = "5bd9e86e40ce4001a57426541d7c79b18143cbd181e3330c1a3e5c5c43287083";
};

propagatedBuildInputs = [ scikitlearn ];