pyspiral 0.7.2__cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.7.3__cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
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.
Potentially problematic release.
This version of pyspiral might be problematic. Click here for more details.
- {pyspiral-0.7.2.dist-info → pyspiral-0.7.3.dist-info}/METADATA +1 -1
- {pyspiral-0.7.2.dist-info → pyspiral-0.7.3.dist-info}/RECORD +6 -6
- spiral/__init__.py +13 -0
- spiral/_lib.abi3.so +0 -0
- {pyspiral-0.7.2.dist-info → pyspiral-0.7.3.dist-info}/WHEEL +0 -0
- {pyspiral-0.7.2.dist-info → pyspiral-0.7.3.dist-info}/entry_points.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
pyspiral-0.7.
|
|
2
|
-
pyspiral-0.7.
|
|
3
|
-
pyspiral-0.7.
|
|
4
|
-
spiral/__init__.py,sha256=
|
|
5
|
-
spiral/_lib.abi3.so,sha256=
|
|
1
|
+
pyspiral-0.7.3.dist-info/METADATA,sha256=TtJj86_kdBud0rrEdvDL0Q2Xbx8pSOCXn-YyGfsNMuY,1874
|
|
2
|
+
pyspiral-0.7.3.dist-info/WHEEL,sha256=0ecHyBdkJfSXYIVmWsPh7S-4h4fSrB4FlXhlnIu9c_A,130
|
|
3
|
+
pyspiral-0.7.3.dist-info/entry_points.txt,sha256=R96Y3FpYX6XbQu9qMPfUTgiCcf4qM9OBQQZTDdBkZwA,74
|
|
4
|
+
spiral/__init__.py,sha256=PwaYBWFBtB7cYi7peMmhk_Lm5XzjRoLwOtLbUhc1ZDo,1449
|
|
5
|
+
spiral/_lib.abi3.so,sha256=pr9tK_h8hlq0rfcCnCwmZHzGibvUNtcxQxYRLEe-wc8,61345096
|
|
6
6
|
spiral/adbc.py,sha256=7IxfWIeQN-fh0W5OdN_PP2x3pzQYg6ZUOLsHg3jktqw,14842
|
|
7
7
|
spiral/api/__init__.py,sha256=ULBlVq3PnfNOO6T5naE_ULmmii-83--qTuN2PpAUQN0,2241
|
|
8
8
|
spiral/api/admin.py,sha256=A1iVR1XYJSObZivPAD5UzmPuMgupXc9kaHNYYa_kwfs,585
|
|
@@ -106,4 +106,4 @@ spiral/table.py,sha256=ep8ZYtl6POebkPViR2FrekhFazNmAbOAESoLUODlup8,12242
|
|
|
106
106
|
spiral/text_index.py,sha256=FQ9rgIEGLSJryS9lFdMhKtPFey18BXoWbPXyvZPJJ04,442
|
|
107
107
|
spiral/transaction.py,sha256=KQhx3DvQyxG2C8md-YGsF_PgBRfayI0r_7ebMItDHdI,3938
|
|
108
108
|
spiral/types_.py,sha256=W_jyO7F6rpPiH69jhgSgV7OxQZbOlb1Ho3InpKUP6Eo,155
|
|
109
|
-
pyspiral-0.7.
|
|
109
|
+
pyspiral-0.7.3.dist-info/RECORD,,
|
spiral/__init__.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"""Python client for Spiral"""
|
|
2
2
|
|
|
3
3
|
import importlib
|
|
4
|
+
import os
|
|
5
|
+
import warnings
|
|
4
6
|
|
|
5
7
|
# This is here to make sure we load the native extension first
|
|
6
8
|
from spiral import _lib
|
|
@@ -40,3 +42,14 @@ __all__ = [
|
|
|
40
42
|
]
|
|
41
43
|
|
|
42
44
|
__version__ = importlib.metadata.version("pyspiral")
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _warn_msg():
|
|
48
|
+
warnings.warn(
|
|
49
|
+
"Spiral does not support forking, and it may cause undefined behavior. \
|
|
50
|
+
Please use `spawn` or `forkserver` multiprocessing."
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
if hasattr(os, "register_at_fork"):
|
|
55
|
+
os.register_at_fork(before=_warn_msg)
|
spiral/_lib.abi3.so
CHANGED
|
Binary file
|
|
File without changes
|
|
File without changes
|