tigrbl_engine_sqlite 0.4.2.dev4__tar.gz → 0.4.3.dev4__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_sqlite-0.4.3.dev4/.gitignore +62 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/PKG-INFO +1 -1
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/pyproject.toml +1 -1
- tigrbl_engine_sqlite-0.4.2.dev4/.gitignore +0 -25
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/LICENSE +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/NOTICE +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/README.md +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/src/tigrbl_engine_sqlite/__init__.py +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/src/tigrbl_engine_sqlite/engine.py +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/src/tigrbl_engine_sqlite/plugin.py +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/src/tigrbl_engine_sqlite/session.py +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/tests/test_sqlite_session_batch_execution.py +0 -0
- {tigrbl_engine_sqlite-0.4.2.dev4 → tigrbl_engine_sqlite-0.4.3.dev4}/tests/test_sqlite_storage_spec_check_constraints.py +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Root policy: ignore every new root-level entry unless explicitly allowed.
|
|
2
|
+
/*
|
|
3
|
+
|
|
4
|
+
# Root entries intentionally allowed by repository policy.
|
|
5
|
+
!/.codex/
|
|
6
|
+
!/.github/
|
|
7
|
+
!/.gitignore
|
|
8
|
+
!/.ssot/
|
|
9
|
+
!/CODE_OF_CONDUCT.md
|
|
10
|
+
!/CONTRIBUTING.md
|
|
11
|
+
!/LICENSE
|
|
12
|
+
!/NOTICE
|
|
13
|
+
!/README.md
|
|
14
|
+
!/SECURITY.md
|
|
15
|
+
!/assets/
|
|
16
|
+
!/bindings/
|
|
17
|
+
!/docs/
|
|
18
|
+
!/examples/
|
|
19
|
+
!/pkgs/
|
|
20
|
+
!/pyproject.toml
|
|
21
|
+
!/tests/
|
|
22
|
+
!/tools/
|
|
23
|
+
!/uv.lock
|
|
24
|
+
|
|
25
|
+
# Generated caches and build artifacts.
|
|
26
|
+
__pycache__/
|
|
27
|
+
.pytest_cache/
|
|
28
|
+
.ruff_cache/
|
|
29
|
+
.mypy_cache/
|
|
30
|
+
.tox/
|
|
31
|
+
.nox/
|
|
32
|
+
.venv/
|
|
33
|
+
.coverage
|
|
34
|
+
htmlcov/
|
|
35
|
+
build/
|
|
36
|
+
dist/
|
|
37
|
+
site/
|
|
38
|
+
target/
|
|
39
|
+
*.egg-info/
|
|
40
|
+
*.pyc
|
|
41
|
+
*.pyd
|
|
42
|
+
*.tmp*
|
|
43
|
+
*.zip
|
|
44
|
+
*.body
|
|
45
|
+
perf.sqlite
|
|
46
|
+
node_modules/
|
|
47
|
+
|
|
48
|
+
# Root-local generated caches and temporary package artifacts.
|
|
49
|
+
/.benchmarks/
|
|
50
|
+
/.pip-cache/
|
|
51
|
+
/.tmp
|
|
52
|
+
/.tmp/
|
|
53
|
+
/.tmp*/
|
|
54
|
+
/.uv-cache*/
|
|
55
|
+
/.uv-pytest*/
|
|
56
|
+
/.uv-pytest-tigrbl-tests/
|
|
57
|
+
/.uv-python*/
|
|
58
|
+
/.vendor
|
|
59
|
+
/.venv*/
|
|
60
|
+
/.venv-gitvs*/
|
|
61
|
+
/generation_examples/
|
|
62
|
+
/tmp/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_sqlite
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3.dev4
|
|
4
4
|
Summary: SQLite engine plugin for SQLAlchemy sessions, local transactional storage, and Tigrbl application persistence.
|
|
5
5
|
Project-URL: Organization, https://github.com/tigrbl
|
|
6
6
|
Project-URL: Discord, https://discord.gg/K4YTAPapjR
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_sqlite"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.3.dev4"
|
|
8
8
|
description = "SQLite engine plugin for SQLAlchemy sessions, local transactional storage, and Tigrbl application persistence."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
__pycache__/
|
|
2
|
-
.pytest_cache/
|
|
3
|
-
.ruff_cache/
|
|
4
|
-
.mypy_cache/
|
|
5
|
-
.tox/
|
|
6
|
-
.nox/
|
|
7
|
-
.venv/
|
|
8
|
-
.coverage
|
|
9
|
-
htmlcov/
|
|
10
|
-
build/
|
|
11
|
-
dist/
|
|
12
|
-
site/
|
|
13
|
-
target/
|
|
14
|
-
*.egg-info/
|
|
15
|
-
*.pyc
|
|
16
|
-
*.tmp*
|
|
17
|
-
*.zip
|
|
18
|
-
/.vendor
|
|
19
|
-
/.tmp
|
|
20
|
-
*.body
|
|
21
|
-
.pip-cache/
|
|
22
|
-
*.pyd
|
|
23
|
-
.tmp-release-plan-check.json
|
|
24
|
-
/.uv-pytest-tigrbl-tests
|
|
25
|
-
perf.sqlite
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|