commit 58c6f746264e1d976646fb694d1fabc49c2be0d7
parent d2bc54e49ccb0fea4779a85041297faa01381d89
Author: vossen <44332958+vossenv@users.noreply.github.com>
Date: Sun, 11 Feb 2024 10:10:22 -0600
[BUGFIX] Update Pydantic requirements (#380)
min version pydantic
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/environment_gpu.yml b/environment_gpu.yml
@@ -19,7 +19,7 @@ dependencies:
- onnxruntime!=1.16.0
- pip
- pre-commit
- - pydantic
+ - pydantic>=2.0.0
- pytest
- pytest-mock
- pytorch
diff --git a/requirements.txt b/requirements.txt
@@ -11,7 +11,7 @@ onnx
onnxruntime!=1.16.0 # 1.16.0 has a bug to avoid!
pip
pre-commit
-pydantic
+pydantic>=2.0.0
pytest
pytest-mock
pytorch_lightning
diff --git a/setup.py b/setup.py
@@ -27,7 +27,7 @@ requirements = [
"numpy",
"onnx",
"onnxruntime",
- "pydantic",
+ "pydantic>=2.0.0",
"pytorch_lightning",
"scipy",
"sounddevice",