tigerbeetle 0.16.20__py3-none-any.whl → 0.16.23__py3-none-any.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 tigerbeetle might be problematic. Click here for more details.

tigerbeetle/client.py CHANGED
@@ -91,10 +91,13 @@ class Client:
91
91
 
92
92
  self._inflight_packets: dict[int, InflightPacket] = {}
93
93
 
94
+ # ctypes needs a reference to keep this alive through the FFI call. Having it as a temporary
95
+ # within the call _does not_ work.
96
+ cluster_id_u128 = c_uint128.from_param(cluster_id)
94
97
  init_status = bindings.tb_client_init(
95
98
  ctypes.byref(self._client),
96
99
  ctypes.cast(
97
- ctypes.byref(c_uint128.from_param(cluster_id)), ctypes.POINTER(ctypes.c_uint8 * 16)
100
+ ctypes.byref(cluster_id_u128), ctypes.POINTER(ctypes.c_uint8 * 16)
98
101
  ),
99
102
  replica_addresses.encode("ascii"),
100
103
  len(replica_addresses),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigerbeetle
3
- Version: 0.16.20
3
+ Version: 0.16.23
4
4
  Summary: The TigerBeetle client for Python.
5
5
  Project-URL: Homepage, https://github.com/tigerbeetle/tigerbeetle
6
6
  Project-URL: Issues, https://github.com/tigerbeetle/tigerbeetle/issues
@@ -0,0 +1,14 @@
1
+ tigerbeetle/__init__.py,sha256=3cmov0HPkByJw1znLKoTqIuZUEeEQMEg1fflWY3ty9A,168
2
+ tigerbeetle/bindings.py,sha256=K3rgGuiH6kHO1rZOypk32S06O5OfHYHwLA2KQOyG2BM,26341
3
+ tigerbeetle/client.py,sha256=sniZ6IATiAGWgtRrd60Xtfcixw4cMOaVZEUUP6sFfzM,8774
4
+ tigerbeetle/lib.py,sha256=JKreDxdw_YejtH7F135_m6I6mNBSwjokaI6QicKm7cc,2425
5
+ tigerbeetle/lib/aarch64-linux-gnu.2.27/libtb_client.so,sha256=7waer7Xylu0aXr4BwOfZT_0791lo4e0Ion347NJdBfI,3715360
6
+ tigerbeetle/lib/aarch64-linux-musl/libtb_client.so,sha256=eYRENy0C5tZaCppIIIpdNSCPvHFjj4kmUB52ssgJVgo,3692576
7
+ tigerbeetle/lib/aarch64-macos/libtb_client.dylib,sha256=F4klFU9H65HEomhHo_p8HNTWhqn_N9L39nnrcNadmPQ,515904
8
+ tigerbeetle/lib/x86_64-linux-gnu.2.27/libtb_client.so,sha256=WMFYp641UM7WPCGnLYhakSHMhS2XD5ziiUNhFc3wOcQ,3628872
9
+ tigerbeetle/lib/x86_64-linux-musl/libtb_client.so,sha256=B8BN8QR2PLKiV3W1vE72QeLJQfwU-ZenDwfIZkDHcj4,3625888
10
+ tigerbeetle/lib/x86_64-macos/libtb_client.dylib,sha256=RLPVire5wL_YMFIabGKBF6BIbf2DYMnA1zIONelmL1k,724116
11
+ tigerbeetle/lib/x86_64-windows/tb_client.dll,sha256=zNRu1UaFVlSXQlassMAmBDW1QUYqtjcrSRYLeqehPVg,814080
12
+ tigerbeetle-0.16.23.dist-info/METADATA,sha256=CQ68xSFTRMjFbFNgnmQKV4ZajqvAguUNnYaUM9fMBw4,22980
13
+ tigerbeetle-0.16.23.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
+ tigerbeetle-0.16.23.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- tigerbeetle/__init__.py,sha256=3cmov0HPkByJw1znLKoTqIuZUEeEQMEg1fflWY3ty9A,168
2
- tigerbeetle/bindings.py,sha256=K3rgGuiH6kHO1rZOypk32S06O5OfHYHwLA2KQOyG2BM,26341
3
- tigerbeetle/client.py,sha256=Xm9WumDj_aN3DVAnX7N3P1dT4QOT7LW91VrJQ-era6o,8588
4
- tigerbeetle/lib.py,sha256=JKreDxdw_YejtH7F135_m6I6mNBSwjokaI6QicKm7cc,2425
5
- tigerbeetle/lib/aarch64-linux-gnu.2.27/libtb_client.so,sha256=0C0bGnSmyoCaAgRTr0FWt8AMjznJOlqzrPcnoYdJGuM,3711568
6
- tigerbeetle/lib/aarch64-linux-musl/libtb_client.so,sha256=xNerhm2lMfHsPyIIPaDmn0uuLuP67qqLS-dDMsOmNPs,3688752
7
- tigerbeetle/lib/aarch64-macos/libtb_client.dylib,sha256=h-vkN-esTAbuYMMdUE-v_uShn6C_wgeN_WfHQ6n_X5Q,516928
8
- tigerbeetle/lib/x86_64-linux-gnu.2.27/libtb_client.so,sha256=aFiD5POMv5qv3EukPqN8_obXT5_k4W9ccjdDOgut5Io,3628704
9
- tigerbeetle/lib/x86_64-linux-musl/libtb_client.so,sha256=CLcd6hK61MTp89PZ90PpdeTu6flfbsXrQu1IEKsvnc4,3625712
10
- tigerbeetle/lib/x86_64-macos/libtb_client.dylib,sha256=OjIUlF9gp1vq1SOKVj8gzNB5S8F40GyAhxM7RTBoiw8,721042
11
- tigerbeetle/lib/x86_64-windows/tb_client.dll,sha256=wHQS2fJ1Gecnv2DkhnfhuvAUgfuU0urIazL9RrFstwo,824320
12
- tigerbeetle-0.16.20.dist-info/METADATA,sha256=Y9A4tII7yGUZ9kiejibGcacpOIg_Hstag30NLNu6J4o,22980
13
- tigerbeetle-0.16.20.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
- tigerbeetle-0.16.20.dist-info/RECORD,,