Skip to content

Commit

Permalink
fix: make compatible with keyring 25
Browse files Browse the repository at this point in the history
Fixes #162
  • Loading branch information
lengau committed Sep 13, 2024
1 parent 6d2d606 commit 209512a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion craft_store/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import keyring.backend
import keyring.backends.fail
import keyring.errors
from keyring._compat import properties
from jaraco.classes import properties
from keyring.backends import SecretService
from xdg import BaseDirectory # type: ignore[import]

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ authors = [
{name = "Canonical Ltd.", email = "snapcraft@lists.snapcraft.io"},
]
dependencies = [
"keyring>=23.0,<25.0", # https://github.com/canonical/craft-store/issues/162
"keyring>=23.0",
"overrides>=7.0.0",
"requests>=2.27.0",
"requests-toolbelt>=1.0.0",
"macaroonbakery>=1.3.0,!=1.3.3",
"pydantic~=2.8",
"pyxdg",
"jaraco-classes>=3.4.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 209512a

Please sign in to comment.