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 5, 2024
1 parent b6c6970 commit 8f2a415
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.8"
httpie = "^3.1"
keyring = "^23.5"
keyring = ">= 23.5"

[tool.poetry.dev-dependencies]
pytest = "^7.1"
Expand Down

0 comments on commit 8f2a415

Please sign in to comment.