python3Packages.kserve: 0.15.1 -> 0.15.2 (#413489)

This commit is contained in:
Nick Cao 2025-06-03 18:46:02 -04:00 committed by GitHub
commit 3e43f15715
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,14 +54,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "kserve"; pname = "kserve";
version = "0.15.1"; version = "0.15.2";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kserve"; owner = "kserve";
repo = "kserve"; repo = "kserve";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-k+uyOhsxWPpiA82wCCEn53W2VQgSHGgSABFipEPErRk="; hash = "sha256-NklR2Aoa5UdWkqNOfX+xl3R158JDSQtStXv9DkklOwM=";
}; };
sourceRoot = "${src.name}/python/kserve"; sourceRoot = "${src.name}/python/kserve";
@ -176,7 +176,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "Standardized Serverless ML Inference Platform on Kubernetes"; description = "Standardized Serverless ML Inference Platform on Kubernetes";
homepage = "https://github.com/kserve/kserve/tree/master/python/kserve"; homepage = "https://github.com/kserve/kserve/tree/master/python/kserve";
changelog = "https://github.com/kserve/kserve/releases/tag/v${version}"; changelog = "https://github.com/kserve/kserve/releases/tag/${src.tag}";
license = lib.licenses.asl20; license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ]; maintainers = with lib.maintainers; [ GaetanLepage ];
}; };