From c7d4e708b7ede589ec2c3bb208a4049674a12369 Mon Sep 17 00:00:00 2001 From: Ihor Kalnytskyi Date: Wed, 1 May 2024 19:17:05 +0300 Subject: [PATCH] Open upper interval of 'keyring' dependency The `keyring` dependency is not optional and is required. Unfortunately, the way it's defined in `pyproject.toml` today prohibits installation of keyring v24 and above. Even though it's not recommended to install python CLIs system wide, let's do not bit that restrictive unless absolutely necessary (unsupported version). Fixes: #22 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3fdd194..5574936 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "httpie-credential-store" -version = "3.0.0" +version = "3.1.0" description = "HTTPie: one auth to rule them all!" authors = ["Ihor Kalnytskyi "] license = "MIT" @@ -12,7 +12,7 @@ keywords = ["httpie", "credential", "store", "keychain", "plugin", "auth"] [tool.poetry.dependencies] python = "^3.7" httpie = "^3.1" -keyring = "^23.5" +keyring = ">= 23.5" [tool.poetry.dev-dependencies] pytest = "^7.1"