Merge pull request #330703 from GaetanLepage/kserve

This commit is contained in:
Sandro
2024-07-28 23:48:21 +02:00
committed by GitHub
@@ -3,8 +3,12 @@
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
deprecation,
poetry-core,
# dependencies
async-timeout,
cloudevents,
fastapi,
@@ -17,12 +21,16 @@
prometheus-client,
protobuf,
psutil,
pydantic,
python-dateutil,
pyyaml,
ray,
six,
tabulate,
timing-asgi,
uvicorn,
# checks
avro,
azure-storage-blob,
azure-storage-file-share,
@@ -30,13 +38,14 @@
botocore,
google-cloud-storage,
grpcio-testing,
pytest-asyncio,
pytestCheckHook,
tomlkit,
}:
buildPythonPackage rec {
pname = "kserve";
version = "0.13.0";
version = "0.13.1";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -45,7 +54,7 @@ buildPythonPackage rec {
owner = "kserve";
repo = "kserve";
rev = "refs/tags/v${version}";
hash = "sha256-Fu+1AR7FU4EQ+PhMneHFr3at3N9cN7V24wm/VOfY8GA=";
hash = "sha256-wGS001PK+k21oCOaQCiAtytTDjfe0aiTVJ9spyOucYA=";
};
sourceRoot = "${src.name}/python/kserve";
@@ -68,7 +77,9 @@ buildPythonPackage rec {
prometheus-client
protobuf
psutil
pydantic
python-dateutil
pyyaml
ray
six
tabulate
@@ -96,6 +107,7 @@ buildPythonPackage rec {
botocore
google-cloud-storage
grpcio-testing
pytest-asyncio
pytestCheckHook
tomlkit
];