From ce35af6a2ada921852826a00ef58295ebf39c4d8 Mon Sep 17 00:00:00 2001 From: Daniel Thom Date: Mon, 15 Jun 2026 16:49:05 -0600 Subject: [PATCH] Upgrade Pydantic version The previous version restricted Pydantic to 2.5.x, which fails to build in Python 3.13, at least on macOS. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 754a3b95..bc37b9e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "OpenDSSDirect.py==0.8.4", "pandas~=2.2.3", "pvder~=0.6.0", - "pydantic~=2.5.3", + "pydantic>=2,<3", "pymongo~=4.11.3", "requests~=2.32.3", "scikit-learn~=1.6.1", @@ -78,4 +78,4 @@ include = [ ] [tool.hatch.build.targets.wheel] -packages = ["src/pydss"] \ No newline at end of file +packages = ["src/pydss"]