tigrbl_engine_pandas 0.1.1.dev6__tar.gz → 0.1.1.dev14__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.
@@ -30,6 +30,7 @@ pkgs/standards/peagen/.pymon
30
30
  gateway.db
31
31
  kms.db
32
32
  *.asc
33
+ *.kid
33
34
  *.so
34
35
  *.db
35
36
  target/
@@ -38,3 +39,4 @@ pkgs/experimental/swarmakit/libs/svelte/.vscode/extensions.json
38
39
  node_modules/
39
40
  *.zip
40
41
  .pymon
42
+ /.tmp_pydeps
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_pandas
3
- Version: 0.1.1.dev6
3
+ Version: 0.1.1.dev14
4
4
  Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
5
5
  Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
6
6
  Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pandas
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_pandas"
7
- version = "0.1.1.dev6"
7
+ version = "0.1.1.dev14"
8
8
  description = "Tigrbl engine plugin providing transactional pandas DataFrame sessions."
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -6,7 +6,16 @@ import threading
6
6
 
7
7
  import pandas as pd
8
8
 
9
- from tigrbl.session.spec import SessionSpec
9
+ try:
10
+ from tigrbl.session.spec import SessionSpec
11
+ except Exception:
12
+
13
+ class SessionSpec:
14
+ def __init__(self, isolation=None, read_only=None):
15
+ self.isolation = isolation
16
+ self.read_only = read_only
17
+
18
+
10
19
  from .session import TransactionalDataFrameSession
11
20
 
12
21
  # ---- Engine object: in-memory catalog of DataFrames + versions ----