tigrbl-runtime 0.4.4.dev8__tar.gz → 0.4.5.dev1__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.
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/PKG-INFO +9 -8
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/README.md +8 -7
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/pyproject.toml +1 -1
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/LICENSE +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/NOTICE +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/__init__.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/callbacks.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/__init__.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_completion.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_context.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_jsonrpc.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_receive.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_scope.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_send.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_webtransport.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/asgi.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/capabilities.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/websocket.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/config/__init__.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/config/constants.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/__init__.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/_invoke_support.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/base.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/__init__.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/context.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/hot.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/hot_namespaces.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/hot_state.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/kernel_executor.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/numba_packed.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/packed.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/phase.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/phase_runner.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/types.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/__init__.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/_typing_aliases.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/base.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/channel.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/exceptions.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/hook_types.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/response.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/runtime.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/system.py +0 -0
- {tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/semantics.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl-runtime
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.5.dev1
|
|
4
4
|
Summary: Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch.
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
@@ -275,13 +275,6 @@ Framework maintainers, extension authors, and advanced users composing Tigrbl fr
|
|
|
275
275
|
|
|
276
276
|
It owns a narrow layer in the split workspace and is consumed by higher-level packages through explicit dependencies.
|
|
277
277
|
|
|
278
|
-
## Certification Status
|
|
279
|
-
|
|
280
|
-
- Package status: governed package in the `tigrbl/tigrbl` workspace.
|
|
281
|
-
- Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
|
|
282
|
-
- Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
|
|
283
|
-
- Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
|
|
284
|
-
- Scope note: this README documents the package boundary. Runtime feature support remains governed by `.ssot/` entities and the conformance docs linked below.
|
|
285
278
|
|
|
286
279
|
## Install
|
|
287
280
|
|
|
@@ -399,6 +392,14 @@ Choose `tigrbl-runtime` when the quick-answer table matches your use case. Choos
|
|
|
399
392
|
|
|
400
393
|
This README is the package-local distribution entry point for `tigrbl-runtime`. It answers install, usage, API, ownership, and certification-orientation questions for this package. Broader architectural decisions, release status, and cross-package proof chains remain in the repository-level docs and SSOT registry.
|
|
401
394
|
|
|
395
|
+
## Certification Status
|
|
396
|
+
|
|
397
|
+
- Package status: governed package in the `tigrbl/tigrbl` workspace.
|
|
398
|
+
- Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
|
|
399
|
+
- Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
|
|
400
|
+
- Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
|
|
401
|
+
- Scope note: this README documents the package boundary. Runtime feature support remains governed by `.ssot/` entities and the conformance docs linked below.
|
|
402
|
+
|
|
402
403
|
## License
|
|
403
404
|
|
|
404
405
|
Licensed under the Apache License, Version 2.0. See `LICENSE`, `NOTICE`, and the official [Apache 2.0 license text](https://www.apache.org/licenses/LICENSE-2.0).
|
|
@@ -35,13 +35,6 @@ Framework maintainers, extension authors, and advanced users composing Tigrbl fr
|
|
|
35
35
|
|
|
36
36
|
It owns a narrow layer in the split workspace and is consumed by higher-level packages through explicit dependencies.
|
|
37
37
|
|
|
38
|
-
## Certification Status
|
|
39
|
-
|
|
40
|
-
- Package status: governed package in the `tigrbl/tigrbl` workspace.
|
|
41
|
-
- Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
|
|
42
|
-
- Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
|
|
43
|
-
- Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
|
|
44
|
-
- Scope note: this README documents the package boundary. Runtime feature support remains governed by `.ssot/` entities and the conformance docs linked below.
|
|
45
38
|
|
|
46
39
|
## Install
|
|
47
40
|
|
|
@@ -159,6 +152,14 @@ Choose `tigrbl-runtime` when the quick-answer table matches your use case. Choos
|
|
|
159
152
|
|
|
160
153
|
This README is the package-local distribution entry point for `tigrbl-runtime`. It answers install, usage, API, ownership, and certification-orientation questions for this package. Broader architectural decisions, release status, and cross-package proof chains remain in the repository-level docs and SSOT registry.
|
|
161
154
|
|
|
155
|
+
## Certification Status
|
|
156
|
+
|
|
157
|
+
- Package status: governed package in the `tigrbl/tigrbl` workspace.
|
|
158
|
+
- Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
|
|
159
|
+
- Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
|
|
160
|
+
- Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
|
|
161
|
+
- Scope note: this README documents the package boundary. Runtime feature support remains governed by `.ssot/` entities and the conformance docs linked below.
|
|
162
|
+
|
|
162
163
|
## License
|
|
163
164
|
|
|
164
165
|
Licensed under the Apache License, Version 2.0. See `LICENSE`, `NOTICE`, and the official [Apache 2.0 license text](https://www.apache.org/licenses/LICENSE-2.0).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl-runtime"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.5.dev1"
|
|
4
4
|
description = "Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { file = "LICENSE" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_completion.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_context.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_jsonrpc.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_receive.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_scope.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_send.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/_asgi_webtransport.py
RENAMED
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/channel/capabilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/__init__.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/_invoke_support.py
RENAMED
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/__init__.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/context.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/ctx/hot_state.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/kernel_executor.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/numba_packed.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/executors/phase_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/_typing_aliases.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/exceptions.py
RENAMED
|
File without changes
|
{tigrbl_runtime-0.4.4.dev8 → tigrbl_runtime-0.4.5.dev1}/tigrbl_runtime/runtime/hook_types.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|