From ce24a906909df76527ba8cb1ef59bf5a64b98d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sinclert=20P=C3=A9rez?= Date: Thu, 28 Nov 2024 11:12:56 +0100 Subject: [PATCH] chore: loose pydantic 2 versions --- lib/charms/glauth_k8s/v0/ldap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/charms/glauth_k8s/v0/ldap.py b/lib/charms/glauth_k8s/v0/ldap.py index 206c3ac8..6e495780 100644 --- a/lib/charms/glauth_k8s/v0/ldap.py +++ b/lib/charms/glauth_k8s/v0/ldap.py @@ -155,9 +155,9 @@ def _on_ldap_requested(self, event: LdapRequestedEvent) -> None: # Increment this PATCH version before using `charmcraft publish-lib` or reset # to 0 if you are raising the major API version -LIBPATCH = 6 +LIBPATCH = 7 -PYDEPS = ["pydantic~=2.5.3"] +PYDEPS = ["pydantic>=2.5.3"] DEFAULT_RELATION_NAME = "ldap" BIND_ACCOUNT_SECRET_LABEL_TEMPLATE = Template("relation-$relation_id-bind-account-secret")