From 6ef080b5476e3c03ee621f85fe03e25857bf7eb1 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Tue, 26 Mar 2024 11:13:06 -0400 Subject: [PATCH] fix: workaround for keyring 25 incompatibility https://github.com/canonical/craft-store/issues/162 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3a09e58..c92919e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = [ {name = "Canonical Ltd.", email = "snapcraft@lists.snapcraft.io"}, ] dependencies = [ - "keyring>=23.0", + "keyring>=23.0,<25.0", # https://github.com/canonical/craft-store/issues/162 "overrides>=7.0.0", "requests>=2.27.0", "requests-toolbelt>=1.0.0",