From 3cc5af46d78081f22354a4baa35af950569db4a5 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Fri, 29 May 2026 15:44:32 +0200 Subject: [PATCH] Relax pydantic version constraint It declares to be stable with the exception of unstable features. We should be ok pinning to the major version. --- pulp-glue/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 89f0fb50d..540ef51c9 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ dependencies = [ "multidict>=6.0.5,<6.8", "packaging>=22.0,<=26.2", # CalVer - "pydantic>=2.9.2,<2.13", + "pydantic>=2.9.2,<3", # Stable with the exception of experimental features. https://pydantic.dev/docs/validation/latest/get-started/version-policy "requests>=2.24.0,<2.34", "tomli>=2.0.0,<2.1;python_version<'3.11'", ]