singlestoredb 1.15.2__cp38-abi3-macosx_10_9_universal2.whl → 1.15.3__cp38-abi3-macosx_10_9_universal2.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 singlestoredb might be problematic. Click here for more details.

Binary file
singlestoredb/__init__.py CHANGED
@@ -13,7 +13,7 @@ Examples
13
13
 
14
14
  """
15
15
 
16
- __version__ = '1.15.2'
16
+ __version__ = '1.15.3'
17
17
 
18
18
  from typing import Any
19
19
 
@@ -269,7 +269,7 @@ class TestRowdat1(unittest.TestCase):
269
269
  def test_numpy_accel(self):
270
270
  dump_res = rowdat_1._dump_numpy_accel(
271
271
  col_types, numpy_row_ids, numpy_data,
272
- ).tobytes()
272
+ )
273
273
  load_res = rowdat_1._load_numpy_accel(col_spec, dump_res)
274
274
 
275
275
  ids = load_res[0]
@@ -294,7 +294,7 @@ class TestRowdat1(unittest.TestCase):
294
294
  def test_numpy(self):
295
295
  dump_res = rowdat_1._dump_numpy(
296
296
  col_types, numpy_row_ids, numpy_data,
297
- ).tobytes()
297
+ )
298
298
  load_res = rowdat_1._load_numpy(col_spec, dump_res)
299
299
 
300
300
  ids = load_res[0]
@@ -387,7 +387,7 @@ class TestRowdat1(unittest.TestCase):
387
387
  with self.assertRaises(res, msg=f'Expected {res} for {data} in {dtype}'):
388
388
  rowdat_1._dump_numpy_accel(
389
389
  [dtype], numpy_row_ids, [(arr, None)],
390
- ).tobytes()
390
+ )
391
391
 
392
392
  # Pure Python
393
393
  if 'mediumint exceeds' in name:
@@ -396,13 +396,13 @@ class TestRowdat1(unittest.TestCase):
396
396
  with self.assertRaises(res, msg=f'Expected {res} for {data} in {dtype}'):
397
397
  rowdat_1._dump_numpy(
398
398
  [dtype], numpy_row_ids, [(arr, None)],
399
- ).tobytes()
399
+ )
400
400
 
401
401
  else:
402
402
  # Accelerated
403
403
  dump_res = rowdat_1._dump_numpy_accel(
404
404
  [dtype], numpy_row_ids, [(arr, None)],
405
- ).tobytes()
405
+ )
406
406
  load_res = rowdat_1._load_numpy_accel([('x', dtype)], dump_res)
407
407
  assert load_res[1][0][0] == res, \
408
408
  f'Expected {res} for {data}, but got {load_res[1][0][0]} in {dtype}'
@@ -410,7 +410,7 @@ class TestRowdat1(unittest.TestCase):
410
410
  # Pure Python
411
411
  dump_res = rowdat_1._dump_numpy(
412
412
  [dtype], numpy_row_ids, [(arr, None)],
413
- ).tobytes()
413
+ )
414
414
  load_res = rowdat_1._load_numpy([('x', dtype)], dump_res)
415
415
  assert load_res[1][0][0] == res, \
416
416
  f'Expected {res} for {data}, but got {load_res[1][0][0]} in {dtype}'
@@ -788,7 +788,7 @@ class TestRowdat1(unittest.TestCase):
788
788
  # Accelerated
789
789
  dump_res = rowdat_1._dump_numpy_accel(
790
790
  [dtype], numpy_row_ids, [(data, None)],
791
- ).tobytes()
791
+ )
792
792
  load_res = rowdat_1._load_numpy_accel([('x', dtype)], dump_res)
793
793
 
794
794
  if name == 'double from float32':
@@ -800,7 +800,7 @@ class TestRowdat1(unittest.TestCase):
800
800
  # Pure Python
801
801
  dump_res = rowdat_1._dump_numpy(
802
802
  [dtype], numpy_row_ids, [(data, None)],
803
- ).tobytes()
803
+ )
804
804
  load_res = rowdat_1._load_numpy([('x', dtype)], dump_res)
805
805
 
806
806
  if name == 'double from float32':
@@ -812,7 +812,7 @@ class TestRowdat1(unittest.TestCase):
812
812
  def test_python(self):
813
813
  dump_res = rowdat_1._dump(
814
814
  col_types, py_row_ids, py_col_data,
815
- ).tobytes()
815
+ )
816
816
  load_res = rowdat_1._load(col_spec, dump_res)
817
817
 
818
818
  ids = load_res[0]
@@ -824,7 +824,7 @@ class TestRowdat1(unittest.TestCase):
824
824
  def test_python_accel(self):
825
825
  dump_res = rowdat_1._dump_accel(
826
826
  col_types, py_row_ids, py_col_data,
827
- ).tobytes()
827
+ )
828
828
  load_res = rowdat_1._load_accel(col_spec, dump_res)
829
829
 
830
830
  ids = load_res[0]
@@ -836,7 +836,7 @@ class TestRowdat1(unittest.TestCase):
836
836
  def test_polars(self):
837
837
  dump_res = rowdat_1._dump_polars(
838
838
  col_types, polars_row_ids, polars_data,
839
- ).tobytes()
839
+ )
840
840
  load_res = rowdat_1._load_polars(col_spec, dump_res)
841
841
 
842
842
  ids = load_res[0]
@@ -861,7 +861,7 @@ class TestRowdat1(unittest.TestCase):
861
861
  def test_polars_accel(self):
862
862
  dump_res = rowdat_1._dump_polars_accel(
863
863
  col_types, polars_row_ids, polars_data,
864
- ).tobytes()
864
+ )
865
865
  load_res = rowdat_1._load_polars_accel(col_spec, dump_res)
866
866
 
867
867
  ids = load_res[0]
@@ -886,7 +886,7 @@ class TestRowdat1(unittest.TestCase):
886
886
  def test_pandas(self):
887
887
  dump_res = rowdat_1._dump_pandas(
888
888
  col_types, pandas_row_ids, pandas_data,
889
- ).tobytes()
889
+ )
890
890
  load_res = rowdat_1._load_pandas(col_spec, dump_res)
891
891
 
892
892
  ids = load_res[0]
@@ -911,7 +911,7 @@ class TestRowdat1(unittest.TestCase):
911
911
  def test_pandas_accel(self):
912
912
  dump_res = rowdat_1._dump_pandas_accel(
913
913
  col_types, pandas_row_ids, pandas_data,
914
- ).tobytes()
914
+ )
915
915
  load_res = rowdat_1._load_pandas_accel(col_spec, dump_res)
916
916
 
917
917
  ids = load_res[0]
@@ -936,7 +936,7 @@ class TestRowdat1(unittest.TestCase):
936
936
  def test_pyarrow(self):
937
937
  dump_res = rowdat_1._dump_arrow(
938
938
  col_types, pyarrow_row_ids, pyarrow_data,
939
- ).tobytes()
939
+ )
940
940
  load_res = rowdat_1._load_arrow(col_spec, dump_res)
941
941
 
942
942
  ids = load_res[0]
@@ -961,7 +961,7 @@ class TestRowdat1(unittest.TestCase):
961
961
  def test_pyarrow_accel(self):
962
962
  dump_res = rowdat_1._dump_arrow_accel(
963
963
  col_types, pyarrow_row_ids, pyarrow_data,
964
- ).tobytes()
964
+ )
965
965
  load_res = rowdat_1._load_arrow_accel(col_spec, dump_res)
966
966
 
967
967
  ids = load_res[0]
@@ -1053,7 +1053,7 @@ class TestJSON(unittest.TestCase):
1053
1053
  def test_pandas(self):
1054
1054
  dump_res = rowdat_1._dump_pandas(
1055
1055
  col_types, pandas_row_ids, pandas_data,
1056
- ).tobytes()
1056
+ )
1057
1057
  load_res = rowdat_1._load_pandas(col_spec, dump_res)
1058
1058
 
1059
1059
  ids = load_res[0]
@@ -1078,7 +1078,7 @@ class TestJSON(unittest.TestCase):
1078
1078
  def test_pyarrow(self):
1079
1079
  dump_res = rowdat_1._dump_arrow(
1080
1080
  col_types, pyarrow_row_ids, pyarrow_data,
1081
- ).tobytes()
1081
+ )
1082
1082
  load_res = rowdat_1._load_arrow(col_spec, dump_res)
1083
1083
 
1084
1084
  ids = load_res[0]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: singlestoredb
3
- Version: 1.15.2
3
+ Version: 1.15.3
4
4
  Summary: Interface to the SingleStoreDB database and workspace management APIs
5
5
  Home-page: https://github.com/singlestore-labs/singlestoredb-python
6
6
  Author: SingleStore
@@ -1,16 +1,16 @@
1
- _singlestoredb_accel.abi3.so,sha256=uTb6s_nEjquymy6zozZ11x6GKRjE5c8vj9_3wbuvVGA,207216
1
+ _singlestoredb_accel.abi3.so,sha256=ohVCunjDLBfTPdZgjGacsHPHr1hnHKpT7AGKZsvCvpE,207264
2
2
  sqlx/magic.py,sha256=JsS9_9aBFaOt91Torm1JPN0c8qB2QmYJmNSKtbSQIY0,3509
3
3
  sqlx/__init__.py,sha256=aBYiU8DZXCogvWu3yWafOz7bZS5WWwLZXj7oL0dXGyU,85
4
- singlestoredb-1.15.2.dist-info/RECORD,,
5
- singlestoredb-1.15.2.dist-info/LICENSE,sha256=Mlq78idURT-9G026aMYswwwnnrLcgzTLuXeAs5hjDLM,11341
6
- singlestoredb-1.15.2.dist-info/WHEEL,sha256=_VEguvlLpUd-c8RbFMA4yMIVNMBv2LhpxYLCEQ-Bogk,113
7
- singlestoredb-1.15.2.dist-info/entry_points.txt,sha256=bSLaTWB5zGjpVYPAaI46MkkDup0su-eb3uAhCNYuRV0,48
8
- singlestoredb-1.15.2.dist-info/top_level.txt,sha256=lA65Vf4qAMfg_s1oG3LEO90h4t1Z-SPDbRqkevI3bSY,40
9
- singlestoredb-1.15.2.dist-info/METADATA,sha256=6-ReMW18GJNDWC_1ObD0oDwowWs9M6dcwN26DoV2gm4,5804
4
+ singlestoredb-1.15.3.dist-info/RECORD,,
5
+ singlestoredb-1.15.3.dist-info/LICENSE,sha256=Mlq78idURT-9G026aMYswwwnnrLcgzTLuXeAs5hjDLM,11341
6
+ singlestoredb-1.15.3.dist-info/WHEEL,sha256=_VEguvlLpUd-c8RbFMA4yMIVNMBv2LhpxYLCEQ-Bogk,113
7
+ singlestoredb-1.15.3.dist-info/entry_points.txt,sha256=bSLaTWB5zGjpVYPAaI46MkkDup0su-eb3uAhCNYuRV0,48
8
+ singlestoredb-1.15.3.dist-info/top_level.txt,sha256=lA65Vf4qAMfg_s1oG3LEO90h4t1Z-SPDbRqkevI3bSY,40
9
+ singlestoredb-1.15.3.dist-info/METADATA,sha256=V_BY23iSritv7kZErDT6ZrJ7XHRiw0ZLyhuvSR6kWxA,5804
10
10
  singlestoredb/auth.py,sha256=u8D9tpKzrqa4ssaHjyZnGDX1q8XBpGtuoOkTkSv7B28,7599
11
11
  singlestoredb/config.py,sha256=aBdMrPEaNSH-QLi1AXoQaSJsZ9f6ZXoFPN-74Trr6sQ,13935
12
12
  singlestoredb/vectorstore.py,sha256=BZb8e7m02_XVHqOyu8tA94R6kHb3n-BC8F08JyJwDzY,8408
13
- singlestoredb/__init__.py,sha256=4XuKjp-JxKkJ0tjApI_BD6PPFGZvQNn0kGzz7rEy3Pw,2272
13
+ singlestoredb/__init__.py,sha256=du9fYfdFzwLGCCtsd8zQ0EK1P5GTZex-vbq_tAxpJyQ,2272
14
14
  singlestoredb/types.py,sha256=Qp_PWYjSYG6PRnmXAZZ7K2QehUqfoG4KSllI3O1stPE,10397
15
15
  singlestoredb/connection.py,sha256=ELk3-UpM6RaB993aIt08MydKiiDnejHQ1s8EFiacrAI,46055
16
16
  singlestoredb/pytest.py,sha256=OyF3BO9mgxenifYhOihnzGk8WzCJ_zN5_mxe8XyFPOc,9074
@@ -40,7 +40,7 @@ singlestoredb/tests/test_basics.py,sha256=Dw1irrtf3gWN7tqGruSH6uhWi5zkmCpJl6ZMQx
40
40
  singlestoredb/tests/test_ext_func.py,sha256=_YREceW1Llwx9Wcamj0up2IXLuBTnuvQqCFOWphckKI,46271
41
41
  singlestoredb/tests/test_connection.py,sha256=ax2hBPahn0rFENBbYLoph_JIAR20eYeJLyQPIQGIdX4,120237
42
42
  singlestoredb/tests/test2.ipynb,sha256=yd1PE1VK-DwiRd6mYS4_0cPBtuVkvcDtycvTwD-YnDo,218
43
- singlestoredb/tests/test_ext_func_data.py,sha256=yTADD93nPxX6_rZXXLZaOWEI_yPvYyir9psn5PK9ctU,47695
43
+ singlestoredb/tests/test_ext_func_data.py,sha256=kyNklkX1RxSiahI0LZjpqhg3LGDs0iwv8iHuXW3AcSo,47515
44
44
  singlestoredb/tests/test_exceptions.py,sha256=tfr_8X2w1UmG4nkSBzWGB0C7ehrf1GAVgj6_ODaG-TM,1131
45
45
  singlestoredb/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  singlestoredb/tests/test_management.py,sha256=R5g5QHWCSPxCrwMUOD0BL-touGIDvqQfDve-YmZyhX4,51973