-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move more logic to status_handler, add more test cases, and…
… bump lib versions Signed-off-by: Ivan Wei <[email protected]>
- Loading branch information
Showing
9 changed files
with
190 additions
and
171 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
[tool.poetry] | ||
name = "status_list" | ||
version = "0.1.0" | ||
description = "" | ||
authors = [] | ||
description = "Status List plugin for ACA-Py" | ||
authors = [ | ||
"Ivan Wei <[email protected]>" | ||
] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.12" | ||
bitarray = "^3.0.0" | ||
|
||
# Define ACA-Py as an optional/extra dependency so it can be | ||
# explicitly installed with the plugin if desired. | ||
acapy-agent = { version = "~1.2.1", optional = true } | ||
acapy-agent = { version = "~1.2.2", optional = true } | ||
|
||
[tool.poetry.extras] | ||
aca-py = ["acapy-agent"] | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
ruff = "^0.9.3" | ||
ruff = "^0.9.5" | ||
pytest = "^8.3.3" | ||
pytest-asyncio = "^0.25.0" | ||
pytest-asyncio = "^0.25.3" | ||
pytest-cov = "^5.0.0" | ||
pytest-ruff = "^0.4.1" | ||
|
||
[tool.poetry.group.integration.dependencies] | ||
aries-askar = { version = "~0.3.2" } | ||
aries-askar = { version = "~0.4.3" } | ||
indy-credx = { version = "~1.1.1" } | ||
indy-vdr = { version = "~0.4.1" } | ||
python3-indy = { version = "^1.11.1" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.