-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
Signed-off-by: Release Bot <[email protected]> Co-authored-by: Release Bot <[email protected]>
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "basicmessage_storage" | ||
version = "0.1.0" | ||
description = " (Supported aries-cloudagent version: 1.0.0) " | ||
description = " (Supported aries-cloudagent version: 1.0.1) " | ||
authors = ["Jason Sherman <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "connection_update" | ||
version = "0.1.0" | ||
description = " (Supported aries-cloudagent version: 1.0.0) " | ||
description = " (Supported aries-cloudagent version: 1.0.1) " | ||
authors = ["Jason Sherman <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "multitenant_provider" | ||
version = "0.1.0" | ||
description = " (Supported aries-cloudagent version: 1.0.0) " | ||
description = " (Supported aries-cloudagent version: 1.0.1) " | ||
authors = ["Jason Sherman <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -18,7 +18,7 @@ python-dateutil = "^2.8.2" | |
aca-py = ["aries-cloudagent"] | ||
|
||
[tool.poetry.dev-dependencies] | ||
ruff = "^0.6.5" | ||
ruff = "^0.6.9" | ||
pytest = "^8.3.3" | ||
pytest-asyncio = "^0.24.0" | ||
pytest-cov = "^5.0.0" | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "oid4vc" | ||
version = "0.1.0" | ||
description = "OpenID for Verifiable Credentials plugin for acapy. (Supported aries-cloudagent version: 1.0.0)" | ||
description = "OpenID for Verifiable Credentials plugin for acapy. (Supported aries-cloudagent version: 1.0.1) " | ||
authors = [ | ||
"Adam Burdett <[email protected]>", | ||
"Char Howland <[email protected]>", | ||
|
@@ -41,7 +41,7 @@ mso_mdoc = ["cbor2", "cbor-diag", "cwt", "pycose"] | |
sd_jwt = ["jsonpointer"] | ||
|
||
[tool.poetry.dev-dependencies] | ||
ruff = "^0.6.5" | ||
ruff = "^0.6.9" | ||
pytest = "^8.3.3" | ||
pytest-asyncio = "^0.24.0" | ||
pytest-cov = "^5.0.0" | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ pydantic = "^2.7.0" | |
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "redis_events" | ||
version = "0.1.0" | ||
description = "ACA-PY persisted events using Redis (Supported aries-cloudagent version: 1.0.0) " | ||
description = "ACA-PY persisted events using Redis (Supported aries-cloudagent version: 1.0.1) " | ||
authors = ["Shaanjot Gill <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -43,18 +43,8 @@ line-length = 90 | |
select = ["E", "F", "C", "D"] | ||
ignore = [ | ||
# Google Python Doc Style | ||
"D203", | ||
"D204", | ||
"D213", | ||
"D215", | ||
"D400", | ||
"D401", | ||
"D404", | ||
"D406", | ||
"D407", | ||
"D408", | ||
"D409", | ||
"D413", | ||
"D203", "D204", "D213", "D215", "D400", "D401", "D404", "D406", "D407", | ||
"D408", "D409", "D413", | ||
"D202", # Allow blank line after docstring | ||
"D104", # Don't require docstring in public package | ||
# Things that we should fix, but are too much work right now | ||
|
@@ -76,11 +66,19 @@ junit_family = "xunit1" | |
asyncio_mode = "auto" | ||
|
||
[tool.coverage.run] | ||
omit = ["*/tests/*", "docker/*", "integration/*", "*/definition.py"] | ||
omit = [ | ||
"*/tests/*", | ||
"docker/*", | ||
"integration/*", | ||
"*/definition.py" | ||
] | ||
data_file = ".test-reports/.coverage" | ||
|
||
[tool.coverage.report] | ||
exclude_lines = ["pragma: no cover", "@abstract"] | ||
exclude_lines = [ | ||
"pragma: no cover", | ||
"@abstract" | ||
] | ||
precision = 2 | ||
skip_covered = true | ||
show_missing = true | ||
|
@@ -91,3 +89,4 @@ output = ".test-reports/coverage.xml" | |
[build-system] | ||
requires = ["setuptools", "poetry-core>=1.2"] | ||
build-backend = "poetry.core.masonry.api" | ||
|