Skip to content

Commit 7337c13

Browse files
fix: pin pydantic version for openai compatibility (#8122)
1 parent 9234e38 commit 7337c13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -107,6 +107,6 @@ def get_tag(self):
107107
zip_safe=False,
108108
cmdclass={"bdist_wheel": bdist_wheel},
109109
data_files=data_files,
110-
install_requires=["tritonserver", "pydantic"],
110+
install_requires=["tritonserver", "pydantic==2.10.6"],
111111
extras_require={"GPU": gpu_extras, "test": test_extras, "all": all_extras},
112112
)

0 commit comments

Comments
 (0)