tigrbl_engine_pgsqli_wal 0.1.13.dev1__tar.gz → 0.1.14.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_engine_pgsqli_wal-0.1.13.dev1/src/tigrbl_engine_pgsqli_wal.egg-info → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/PKG-INFO +4 -3
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/pyproject.toml +5 -3
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1/src/tigrbl_engine_pgsqli_wal.egg-info}/PKG-INFO +4 -3
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/LICENSE +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/README.md +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/setup.cfg +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/__init__.py +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/engines/postgres_wal_engine.py +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/engines/sqlite_wal_engine.py +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/sessions/postgres_wal_session.py +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal/sessions/sqlite_wal_session.py +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/SOURCES.txt +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/dependency_links.txt +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/entry_points.txt +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/requires.txt +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/src/tigrbl_engine_pgsqli_wal.egg-info/top_level.txt +0 -0
- {tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/tests/test_smoke.py +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_pgsqli_wal
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.14.dev1
|
|
4
4
|
Summary: PostgreSQL and SQLite WAL engine plugin for Tigrbl (auto-registered via entry points).
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
|
-
Project-URL: Homepage, https://github.com/swarmauri/
|
|
8
|
-
Project-URL: Repository, https://github.com/swarmauri/
|
|
7
|
+
Project-URL: Homepage, https://github.com/swarmauri/tigrbl
|
|
8
|
+
Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_pgsqli_wal
|
|
9
|
+
Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
|
|
9
10
|
Keywords: tigrbl,engine,plugin,postgres,sqlite,wal
|
|
10
11
|
Classifier: Development Status :: 1 - Planning
|
|
11
12
|
Classifier: Programming Language :: Python
|
{tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/pyproject.toml
RENAMED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_pgsqli_wal"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.14.dev1"
|
|
8
8
|
description = "PostgreSQL and SQLite WAL engine plugin for Tigrbl (auto-registered via entry points)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10,<3.14"
|
|
@@ -38,9 +38,11 @@ dependencies = [
|
|
|
38
38
|
"psycopg[binary]>=3.1,<4.0", # PostgreSQL driver
|
|
39
39
|
]
|
|
40
40
|
|
|
41
|
+
|
|
41
42
|
[project.urls]
|
|
42
|
-
Homepage = "https://github.com/swarmauri/
|
|
43
|
-
Repository = "https://github.com/swarmauri/
|
|
43
|
+
Homepage = "https://github.com/swarmauri/tigrbl"
|
|
44
|
+
Repository = "https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_pgsqli_wal"
|
|
45
|
+
Issues = "https://github.com/swarmauri/tigrbl/issues"
|
|
44
46
|
|
|
45
47
|
[project.entry-points."tigrbl.engine"]
|
|
46
48
|
pgsqli_wal = "tigrbl_engine_pgsqli_wal:register"
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_pgsqli_wal
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.14.dev1
|
|
4
4
|
Summary: PostgreSQL and SQLite WAL engine plugin for Tigrbl (auto-registered via entry points).
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
|
-
Project-URL: Homepage, https://github.com/swarmauri/
|
|
8
|
-
Project-URL: Repository, https://github.com/swarmauri/
|
|
7
|
+
Project-URL: Homepage, https://github.com/swarmauri/tigrbl
|
|
8
|
+
Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_pgsqli_wal
|
|
9
|
+
Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
|
|
9
10
|
Keywords: tigrbl,engine,plugin,postgres,sqlite,wal
|
|
10
11
|
Classifier: Development Status :: 1 - Planning
|
|
11
12
|
Classifier: Programming Language :: Python
|
|
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
|
{tigrbl_engine_pgsqli_wal-0.1.13.dev1 → tigrbl_engine_pgsqli_wal-0.1.14.dev1}/tests/test_smoke.py
RENAMED
|
File without changes
|