lol

Merge pull request #262759 from GaetanLepage/torchmetrics

python311Packages.torchmetrics: 1.1.2 -> 1.2.0

authored by

Connor Baker and committed by
GitHub
65181c77 a0dc10eb

+9 -2
+9 -2
pkgs/development/python-modules/torchmetrics/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonOlder 5 + , numpy 6 + , lightning-utilities 4 7 , cloudpickle 5 8 , scikit-learn 6 9 , scikit-image ··· 15 18 16 19 let 17 20 pname = "torchmetrics"; 18 - version = "1.1.2"; 21 + version = "1.2.0"; 19 22 in 20 23 buildPythonPackage { 21 24 inherit pname version; ··· 24 27 owner = "PyTorchLightning"; 25 28 repo = "metrics"; 26 29 rev = "refs/tags/v${version}"; 27 - hash = "sha256-qbO2POXJp2O0VL16zY5mb6TDpogs1L34anFVeSf502g="; 30 + hash = "sha256-g5JuTbiRd8yWx2nM3UE8ejOhuZ0XpAQdS5AC9AlrSFY="; 28 31 }; 32 + 33 + disabled = pythonOlder "3.8"; 29 34 30 35 propagatedBuildInputs = [ 36 + numpy 37 + lightning-utilities 31 38 packaging 32 39 py-deprecate 33 40 ];