Skip to content

Commit

Permalink
Open upper interval of 'keyring' dependency
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ikalnytskyi committed May 1, 2024
1 parent 6cfe12b commit c7d4e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand All @@ -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"
Expand Down

0 comments on commit c7d4e70

Please sign in to comment.