adopt-cli 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/PKG-INFO +2 -1
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/pyproject.toml +6 -1
- adopt_cli-0.3.1/src/adopt_cli/_build_info.py +6 -0
- adopt_cli-0.3.0/src/adopt_cli/_build_info.py +0 -6
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/.gitignore +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/LICENSE +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/NOTICE +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/__init__.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/__init__.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/agent.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/boundary.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/coverage.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/detect.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/doctor.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/freshness.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/identity.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/init.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/interchange.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/policy.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/store.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/commands/version.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/config.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/json_out.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/main.py +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/py.typed +0 -0
- {adopt_cli-0.3.0 → adopt_cli-0.3.1}/src/adopt_cli/store_option.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: adopt-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: The adopt command surface: config resolution, JSON mode, exit codes.
|
|
5
5
|
Project-URL: Homepage, https://github.com/onboardux/onboard-core
|
|
6
6
|
Project-URL: Source, https://github.com/onboardux/onboard-core
|
|
@@ -15,6 +15,7 @@ Requires-Dist: adopt-detect
|
|
|
15
15
|
Requires-Dist: adopt-export
|
|
16
16
|
Requires-Dist: adopt-freshness
|
|
17
17
|
Requires-Dist: adopt-identity
|
|
18
|
+
Requires-Dist: adopt-model
|
|
18
19
|
Requires-Dist: adopt-obs
|
|
19
20
|
Requires-Dist: adopt-policy
|
|
20
21
|
Requires-Dist: adopt-scope
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "adopt-cli"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
description = "The adopt command surface: config resolution, JSON mode, exit codes."
|
|
5
5
|
requires-python = ">=3.12"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -18,6 +18,11 @@ dependencies = [
|
|
|
18
18
|
"adopt-export",
|
|
19
19
|
"adopt-freshness",
|
|
20
20
|
"adopt-identity",
|
|
21
|
+
# `adopt_model._enums` is imported directly by `commands/init.py` and
|
|
22
|
+
# `commands/boundary.py`. It arrived transitively through `adopt-store` until
|
|
23
|
+
# someone installed a subset that did not include it, which is why an
|
|
24
|
+
# undeclared dependency is a defect even while it happens to resolve.
|
|
25
|
+
"adopt-model",
|
|
21
26
|
"adopt-obs",
|
|
22
27
|
"adopt-policy",
|
|
23
28
|
"adopt-scope",
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"""Generated by scripts/embed_build_info.py; do not edit in a release build."""
|
|
2
|
+
|
|
3
|
+
from typing import Final
|
|
4
|
+
|
|
5
|
+
SBOM_SHA256: Final[str | None] = '029638e628a78807da308de5896522603914e6119dbf520d909defa64b2283de'
|
|
6
|
+
BUILD_ID: Final[str | None] = 'github:onboardux/onboard-core:32210589212:1:f4d50733666b70632088cbe7dced904f44a9f3ed'
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
"""Generated by scripts/embed_build_info.py; do not edit in a release build."""
|
|
2
|
-
|
|
3
|
-
from typing import Final
|
|
4
|
-
|
|
5
|
-
SBOM_SHA256: Final[str | None] = '93c0332703403696e3bb379a3fae5e8db8c60641d43647a041713b2f65625bf5'
|
|
6
|
-
BUILD_ID: Final[str | None] = 'github:onboardux/onboard-core:31959050258:1:c5d546bf9de4282ce7124a5d14bd3031827091a8'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|