tigrbl_engine_dataframe 0.1.12.dev1__tar.gz → 0.1.13.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_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/.gitignore +2 -0
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/PKG-INFO +4 -3
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/pyproject.toml +5 -3
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/src/tigrbl_engine_dataframe/df_session.py +3 -2
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/LICENSE +0 -0
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/README.md +0 -0
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/src/tigrbl_engine_dataframe/__init__.py +0 -0
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/src/tigrbl_engine_dataframe/df_engine.py +0 -0
- {tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/tests/test_smoke.py +0 -0
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_dataframe
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.13.dev1
|
|
4
4
|
Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
|
|
5
|
-
Project-URL: Homepage, https://github.com/swarmauri/
|
|
6
|
-
Project-URL: Repository, https://github.com/swarmauri/
|
|
5
|
+
Project-URL: Homepage, https://github.com/swarmauri/tigrbl
|
|
6
|
+
Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_dataframe
|
|
7
|
+
Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
|
|
7
8
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
8
9
|
License-Expression: Apache-2.0
|
|
9
10
|
License-File: LICENSE
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_dataframe"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.13.dev1"
|
|
8
8
|
description = "Tigrbl engine plugin providing transactional pandas DataFrame sessions."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -37,9 +37,11 @@ dependencies = [
|
|
|
37
37
|
"tigrbl",
|
|
38
38
|
]
|
|
39
39
|
|
|
40
|
+
|
|
40
41
|
[project.urls]
|
|
41
|
-
Homepage = "https://github.com/swarmauri/
|
|
42
|
-
Repository = "https://github.com/swarmauri/
|
|
42
|
+
Homepage = "https://github.com/swarmauri/tigrbl"
|
|
43
|
+
Repository = "https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_dataframe"
|
|
44
|
+
Issues = "https://github.com/swarmauri/tigrbl/issues"
|
|
43
45
|
|
|
44
46
|
[project.entry-points."tigrbl.engine"]
|
|
45
47
|
dataframe = "tigrbl_engine_dataframe:register"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
from typing import Any, Callable, Dict, List, Mapping, Optional, Sequence, Tuple
|
|
3
|
+
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Mapping, Optional, Sequence, Tuple
|
|
4
4
|
|
|
5
5
|
import pandas as pd
|
|
6
6
|
|
|
@@ -112,7 +112,8 @@ except Exception:
|
|
|
112
112
|
pass
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
if TYPE_CHECKING:
|
|
116
|
+
from .df_engine import DataFrameCatalog
|
|
116
117
|
|
|
117
118
|
# ---- Result facades compatible with Tigrbl CRUD ----
|
|
118
119
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrbl_engine_dataframe-0.1.12.dev1 → tigrbl_engine_dataframe-0.1.13.dev1}/tests/test_smoke.py
RENAMED
|
File without changes
|