tigrbl_engine_inmemory 0.4.4.dev1__tar.gz → 0.4.4.dev8__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_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/PKG-INFO +1 -3
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/README.md +0 -2
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/pyproject.toml +1 -1
- tigrbl_engine_inmemory-0.4.4.dev8/src/tigrbl_engine_inmemory/__init__.py +6 -0
- tigrbl_engine_inmemory-0.4.4.dev1/src/tigrbl_engine_inmemory/__init__.py +0 -7
- tigrbl_engine_inmemory-0.4.4.dev1/src/tigrbl_engine_inmemory/rust.py +0 -14
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/.gitignore +0 -0
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/LICENSE +0 -0
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/NOTICE +0 -0
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/src/tigrbl_engine_inmemory/engine.py +0 -0
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/src/tigrbl_engine_inmemory/plugin.py +0 -0
- {tigrbl_engine_inmemory-0.4.4.dev1 → tigrbl_engine_inmemory-0.4.4.dev8}/src/tigrbl_engine_inmemory/session.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_inmemory
|
|
3
|
-
Version: 0.4.4.
|
|
3
|
+
Version: 0.4.4.dev8
|
|
4
4
|
Summary: In-memory database engine plugin for process-local transactional storage, copy-on-write snapshots, and Tigrbl testing.
|
|
5
5
|
Project-URL: Organization, https://github.com/tigrbl
|
|
6
6
|
Project-URL: Discord, https://discord.gg/K4YTAPapjR
|
|
@@ -307,13 +307,11 @@ pip install tigrbl_engine_inmemory
|
|
|
307
307
|
|
|
308
308
|
Implementation orientation:
|
|
309
309
|
- `tigrbl_engine_inmemory`: engine, plugin, session
|
|
310
|
-
- `tigrbl_engine_inmemory.rust` is a deprecated compatibility shim; engine registration is Python-only.
|
|
311
310
|
|
|
312
311
|
## Public API and Import Surface
|
|
313
312
|
|
|
314
313
|
- Import roots: `tigrbl_engine_inmemory`.
|
|
315
314
|
- Public symbols: `__version__`, `register`.
|
|
316
|
-
- `register_rust_engine` is deprecated and raises when called.
|
|
317
315
|
- Workspace dependencies: [`tigrbl`](https://pypi.org/project/tigrbl/).
|
|
318
316
|
- External runtime dependencies: none declared.
|
|
319
317
|
|
|
@@ -72,13 +72,11 @@ pip install tigrbl_engine_inmemory
|
|
|
72
72
|
|
|
73
73
|
Implementation orientation:
|
|
74
74
|
- `tigrbl_engine_inmemory`: engine, plugin, session
|
|
75
|
-
- `tigrbl_engine_inmemory.rust` is a deprecated compatibility shim; engine registration is Python-only.
|
|
76
75
|
|
|
77
76
|
## Public API and Import Surface
|
|
78
77
|
|
|
79
78
|
- Import roots: `tigrbl_engine_inmemory`.
|
|
80
79
|
- Public symbols: `__version__`, `register`.
|
|
81
|
-
- `register_rust_engine` is deprecated and raises when called.
|
|
82
80
|
- Workspace dependencies: [`tigrbl`](https://pypi.org/project/tigrbl/).
|
|
83
81
|
- External runtime dependencies: none declared.
|
|
84
82
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_inmemory"
|
|
7
|
-
version = "0.4.4.
|
|
7
|
+
version = "0.4.4.dev8"
|
|
8
8
|
description = "In-memory database engine plugin for process-local transactional storage, copy-on-write snapshots, and Tigrbl testing."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
|
|
3
|
-
from typing import Any
|
|
4
|
-
import warnings
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
def register_rust_engine(kind: str = "inmemory", callback: Any | None = None) -> str:
|
|
8
|
-
del callback
|
|
9
|
-
warnings.warn(
|
|
10
|
-
"tigrbl_engine_inmemory Rust registration is deprecated; engines are Python-only.",
|
|
11
|
-
DeprecationWarning,
|
|
12
|
-
stacklevel=2,
|
|
13
|
-
)
|
|
14
|
-
raise RuntimeError(f"register_rust_engine({kind!r}) is unavailable.")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|