Skip to content

Commit 0f36a1a

Browse files
authored
python3Packages.kserve: 0.15.0 -> 0.15.1 (#407752)
2 parents f21da74 + 94571e8 commit 0f36a1a

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

pkgs/development/python-modules/kserve/default.nix

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,22 @@
4646
avro,
4747
grpcio-testing,
4848
pytest-asyncio,
49+
pytest-httpx,
4950
pytest-xdist,
5051
pytestCheckHook,
5152
tomlkit,
5253
}:
5354

5455
buildPythonPackage rec {
5556
pname = "kserve";
56-
version = "0.15.0";
57+
version = "0.15.1";
5758
pyproject = true;
5859

5960
src = fetchFromGitHub {
6061
owner = "kserve";
6162
repo = "kserve";
6263
tag = "v${version}";
63-
hash = "sha256-J2VFMHwhHpvtsywv3ixuVzpuDwq8y9w4heedYYWVBmM=";
64+
hash = "sha256-k+uyOhsxWPpiA82wCCEn53W2VQgSHGgSABFipEPErRk=";
6465
};
6566

6667
sourceRoot = "${src.name}/python/kserve";
@@ -115,14 +116,15 @@ buildPythonPackage rec {
115116
logging = [ asgi-logger ];
116117
ray = [ ray ];
117118
llm = [
118-
# vllm (broken)
119+
vllm
119120
];
120121
};
121122

122123
nativeCheckInputs = [
123124
avro
124125
grpcio-testing
125126
pytest-asyncio
127+
pytest-httpx
126128
pytest-xdist
127129
pytestCheckHook
128130
tomlkit
@@ -147,17 +149,13 @@ buildPythonPackage rec {
147149
"--deselect=test/test_server.py::TestRayServer::test_list_handler"
148150
"--deselect=test/test_server.py::TestRayServer::test_liveness_handler"
149151
"--deselect=test/test_server.py::TestRayServer::test_predict"
152+
# Permission Error
153+
"--deselect=test/test_server.py::TestMutiProcessServer::test_rest_server_multiprocess"
150154
];
151155

152156
disabledTestPaths = [
153157
# Looks for a config file at the root of the repository
154158
"test/test_inference_service_client.py"
155-
156-
# Require broken vllm
157-
"test/test_dataplane.py"
158-
"test/test_model_repository.py"
159-
"test/test_openai_completion.py"
160-
"test/test_openai_embedding.py"
161159
];
162160

163161
disabledTests =

0 commit comments

Comments
 (0)