python312Packages.scikit-posthocs: 0.11.2 -> 0.11.3 (#391095)

This commit is contained in:
Nick Cao
2025-03-19 16:47:19 -04:00
committed by GitHub

View File

@@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "scikit-posthocs";
version = "0.11.2";
version = "0.11.3";
pyproject = true;
src = fetchFromGitHub {
owner = "maximtrp";
repo = "scikit-posthocs";
tag = "v${version}";
hash = "sha256-ChYBjT7xeAiKJFRI9ov4vOGucy0aK0j/0dndNs4ewBo=";
hash = "sha256-mK0O3cXBSXW/j/CqdYviYKJyj8SFSHoj6LK2CisIDmI=";
};
build-system = [ setuptools ];
@@ -46,7 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Multiple Pairwise Comparisons (Post Hoc) Tests in Python";
homepage = "https://github.com/maximtrp/scikit-posthocs";
changelog = "https://github.com/maximtrp/scikit-posthocs/releases/tag/v${version}";
changelog = "https://github.com/maximtrp/scikit-posthocs/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};