quasardb 3.13.6.post1__cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 3.13.7__cp39-cp39-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 quasardb might be problematic. Click here for more details.

@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/TeamCity/work/283bde3fda0d76e7/thirdparty")
quasardb/Makefile CHANGED
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Default target executed when no arguments are given to make.
5
5
  default_target: all
@@ -31,9 +31,6 @@ default_target: all
31
31
 
32
32
  .SUFFIXES: .hpux_make_needs_suffix_list
33
33
 
34
- # Produce verbose output by default.
35
- VERBOSE = 1
36
-
37
34
  # Command-line flag to silence nested $(MAKE).
38
35
  $(VERBOSE)MAKESILENT = -s
39
36
 
quasardb/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # pylint: disable=C0103,C0111,C0302,R0903
2
2
 
3
- # Copyright (c) 2009-2022, quasardb SAS. All rights reserved.
3
+ # Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
4
4
  # All rights reserved.
5
5
  #
6
6
  # Redistribution and use in source and binary forms, with or without
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/TeamCity/work/283bde3fda0d76e7/thirdparty")
@@ -7,7 +7,7 @@ if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
7
  message(FATAL_ERROR "CMake >= 2.8.3 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.23)
10
+ cmake_policy(VERSION 2.8.3...3.24)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
quasardb/date/Makefile CHANGED
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Default target executed when no arguments are given to make.
5
5
  default_target: all
@@ -31,9 +31,6 @@ default_target: all
31
31
 
32
32
  .SUFFIXES: .hpux_make_needs_suffix_list
33
33
 
34
- # Produce verbose output by default.
35
- VERBOSE = 1
36
-
37
34
  # Command-line flag to silence nested $(MAKE).
38
35
  $(VERBOSE)MAKESILENT = -s
39
36
 
@@ -52,11 +52,6 @@ else()
52
52
  endif()
53
53
 
54
54
 
55
- # if the installed project requested no architecture check, don't perform the check
56
- if("FALSE")
57
- return()
58
- endif()
59
-
60
55
  # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
61
56
  if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
62
57
  return()
@@ -7,7 +7,7 @@ if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
7
  message(FATAL_ERROR "CMake >= 2.8.3 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.23)
10
+ cmake_policy(VERSION 2.8.3...3.24)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
quasardb/libqdb_api.so CHANGED
Binary file
@@ -81,6 +81,19 @@ class IncompatibleDtypeErrors(TypeError):
81
81
  def msg(self):
82
82
  return "\n".join(x.msg() for x in self.xs)
83
83
 
84
+ class InvalidDataCardinalityError(ValueError):
85
+ """
86
+ Raised when the provided data arrays doesn't match the table's columns.
87
+ """
88
+ def __init__(self, data, cinfos):
89
+ self.data = data
90
+ self.cinfos = cinfos
91
+ super().__init__(self.msg())
92
+
93
+ def msg(self):
94
+ return "Provided data array length '{}' exceeds amount of table columns '{}', unable to map data to columns".format(len(self.data), len(self.cinfos))
95
+
96
+
84
97
  # Based on QuasarDB column types, which dtype do we accept?
85
98
  # First entry will always be the 'preferred' dtype, other ones
86
99
  # those that we can natively convert in native code.
@@ -259,6 +272,42 @@ def _coerce_deduplicate(deduplicate, deduplication_mode, columns):
259
272
 
260
273
  return deduplicate
261
274
 
275
+ def _clean_nulls(xs, dtype):
276
+ """
277
+ Numpy's masked arrays have a downside that in case they're not able to convert a (masked!) value to
278
+ the desired dtype, they raise an error. So, for example, if I have a masked array of objects that
279
+ look like this
280
+
281
+ xs: [1.234 <pd.NA> 5.678]
282
+ mask: [1 0 1]
283
+
284
+ even though pd.NA is not "visible", because it cannot be converted to a float(), the operation will
285
+ fail!
286
+
287
+ This function fixes this by replacing the null values with an acceptable value that can always be
288
+ converted to the desired dtype.
289
+ """
290
+
291
+ assert ma.isMA(xs)
292
+
293
+ if xs.dtype is not np.dtype('object'):
294
+ return xs
295
+
296
+ fill_value = None
297
+ if dtype == np.float64 or dtype == np.float32 or dtype == np.float16:
298
+ fill_value = float('nan')
299
+ elif dtype == np.int64 or dtype == np.int32 or dtype == np.int16:
300
+ fill_value = -1
301
+ elif dtype == np.dtype('datetime64[ns]'):
302
+ fill_value = np.datetime64('nat')
303
+
304
+ mask = xs.mask
305
+ xs_ = xs.filled(fill_value)
306
+
307
+ return ma.array(xs_, mask=mask)
308
+
309
+
310
+
262
311
  def _coerce_data(data, dtype):
263
312
  """
264
313
  Coerces each numpy array of `data` to the dtype present in `dtype`.
@@ -271,25 +320,34 @@ def _coerce_data(data, dtype):
271
320
  data_ = data[i]
272
321
 
273
322
  if dtype_ is not None and dtypes_equal(data_.dtype, dtype_) == False:
323
+ data_ = _clean_nulls(data_, dtype_)
324
+
325
+ assert ma.isMA(data_)
326
+
274
327
  logger.debug("data for column with offset %d was provided in dtype '%s', but need '%s': converting data...", i, data_.dtype, dtype_)
275
328
 
276
- logger.debug("type of data[%d] after: %s", i, type(data[i]))
277
- logger.debug("size of data[%d] after: %s", i, ma.size(data[i]))
278
- logger.debug("data of data[%d] after: %s", i, data[i])
329
+ logger.debug("dtype of data[%d] before: %s", i, data_.dtype)
330
+ logger.debug("type of data[%d] after: %s", i, type(data_))
331
+ logger.debug("size of data[%d] after: %s", i, ma.size(data_))
332
+ logger.debug("data of data[%d] after: %s", i, data_)
279
333
 
280
334
  try:
281
335
  data[i] = data_.astype(dtype_)
282
336
  except TypeError as err:
283
337
  # One 'bug' is that, if everything is masked, the underlying data type can be
284
338
  # pretty much anything.
285
- if not _is_all_masked(data_):
339
+ if _is_all_masked(data_):
340
+ logger.debug("array completely empty, re-initializing to empty array of '%s'", dtype_)
341
+ data[i] = ma.masked_all(ma.size(data_),
342
+ dtype=dtype_)
343
+
344
+ # Another 'bug' is that when the input data is objects, we may have null-like values (like pd.NA)
345
+ # that cannot easily be converted to, say, float.
346
+ else:
286
347
  logger.error("An error occured while coercing input data type from dtype '%s' to dtype '%s': ", data_.dtype, dtype_)
287
348
  logger.exception(err)
288
349
  raise err
289
350
 
290
- logger.debug("array completely empty, re-initializing to empty array of '%s'", dtype_)
291
- data[i] = ma.masked_all(ma.size(data_),
292
- dtype=dtype_)
293
351
  assert data[i].dtype.kind == dtype_.kind
294
352
 
295
353
  logger.debug("type of data[%d] after: %s", i, type(data[i]))
@@ -321,6 +379,13 @@ def _ensure_list(xs, cinfos):
321
379
  if isinstance(xs, list):
322
380
  return xs
323
381
 
382
+ if isinstance(xs, np.ndarray):
383
+ ret = []
384
+ for x in xs:
385
+ ret.append(x)
386
+
387
+ return ret
388
+
324
389
  # As we only accept list-likes or dicts as input data, it *must* be a dict at this
325
390
  # point
326
391
  assert isinstance(xs, dict)
@@ -612,6 +677,10 @@ def write_arrays(
612
677
  dtype = _add_desired_dtypes(dtype, cinfos)
613
678
 
614
679
  data = _ensure_list(data, cinfos)
680
+
681
+ if len(data) != len(cinfos):
682
+ raise InvalidDataCardinalityError(data, cinfos)
683
+
615
684
  data = ensure_ma(data, dtype=dtype)
616
685
  data = _coerce_data(data, dtype)
617
686
 
@@ -1,6 +1,6 @@
1
1
  # pylint: disable=C0103,C0111,C0302,R0903
2
2
 
3
- # Copyright (c) 2009-2022, quasardb SAS. All rights reserved.
3
+ # Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
4
4
  # All rights reserved.
5
5
  #
6
6
  # Redistribution and use in source and binary forms, with or without
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/TeamCity/work/283bde3fda0d76e7/thirdparty")
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Default target executed when no arguments are given to make.
5
5
  default_target: all
@@ -31,9 +31,6 @@ default_target: all
31
31
 
32
32
  .SUFFIXES: .hpux_make_needs_suffix_list
33
33
 
34
- # Produce verbose output by default.
35
- VERBOSE = 1
36
-
37
34
  # Command-line flag to silence nested $(MAKE).
38
35
  $(VERBOSE)MAKESILENT = -s
39
36
 
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/TeamCity/work/283bde3fda0d76e7/thirdparty")
@@ -7,7 +7,7 @@ if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
7
  message(FATAL_ERROR "CMake >= 2.8.3 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.23)
10
+ cmake_policy(VERSION 2.8.3...3.24)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -10,8 +10,8 @@ set(CMAKE_DEPENDS_LANGUAGES
10
10
  set(CMAKE_DEPENDS_DEPENDENCY_FILES
11
11
  )
12
12
 
13
- # Targets to which this target links.
14
- set(CMAKE_TARGET_LINKED_INFO_FILES
13
+ # Targets to which this target links which contain Fortran sources.
14
+ set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
15
15
  )
16
16
 
17
17
  # Fortran module output directory.
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Delete rule output on recipe failure.
5
5
  .DELETE_ON_ERROR:
@@ -27,9 +27,6 @@
27
27
 
28
28
  .SUFFIXES: .hpux_make_needs_suffix_list
29
29
 
30
- # Produce verbose output by default.
31
- VERBOSE = 1
32
-
33
30
  # Command-line flag to silence nested $(MAKE).
34
31
  $(VERBOSE)MAKESILENT = -s
35
32
 
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.25
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 3.26
3
3
 
4
4
  # Default target executed when no arguments are given to make.
5
5
  default_target: all
@@ -31,9 +31,6 @@ default_target: all
31
31
 
32
32
  .SUFFIXES: .hpux_make_needs_suffix_list
33
33
 
34
- # Produce verbose output by default.
35
- VERBOSE = 1
36
-
37
34
  # Command-line flag to silence nested $(MAKE).
38
35
  $(VERBOSE)MAKESILENT = -s
39
36
 
@@ -70,11 +70,6 @@ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
70
70
  endif()
71
71
 
72
72
 
73
- # if the installed project requested no architecture check, don't perform the check
74
- if("FALSE")
75
- return()
76
- endif()
77
-
78
73
  # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
79
74
  if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "" STREQUAL "")
80
75
  return()
@@ -7,7 +7,7 @@ if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
7
  message(FATAL_ERROR "CMake >= 2.8.3 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.23)
10
+ cmake_policy(VERSION 2.8.3...3.24)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2022, quasardb SAS. All rights reserved.
1
+ Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
4
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quasardb
3
- Version: 3.13.6.post1
3
+ Version: 3.13.7
4
4
  Summary: Python API for quasardb
5
5
  Home-page: https://www.quasardb.net/
6
6
  Author: quasardb SAS
@@ -1,44 +1,44 @@
1
- quasardb/Makefile,sha256=SaaetDvNswUCoXgPH6DKKBVCRjpd6lklxDjPaSTYjis,7803
2
- quasardb/__init__.py,sha256=wrx3xm1qP4uOZ87wkfPD3xhJiSqfxxTIeUzZA4RbqR4,3707
1
+ quasardb/Makefile,sha256=9IjkamsN5PHSX-t1CrVF-RWGLEkUymyaq9DaV3_61K0,7753
2
+ quasardb/__init__.py,sha256=LZ2jO_0RX6OCzgnDgyLK78xtYLzNzfguD8TuQju-4Ho,3707
3
3
  quasardb/cmake_install.cmake,sha256=kN--_clhlanS3t67H90064-4XPMsJU_7RS0wDkPVbjU,1752
4
4
  quasardb/firehose.py,sha256=HO0GjCDg3x4cpzVSH3KZ1AJhV8lK2HJyXr9tpfnNSGI,3492
5
- quasardb/libqdb_api.so,sha256=4ZJ6-rgZ83C_1vq4yIyjgckf3T8AlTX7znolkHcKimk,11022408
5
+ quasardb/libqdb_api.so,sha256=m7JVRXeiVZRtkUPV1O-65LDMFnPZPLCEDqn56ewf_-E,10944584
6
6
  quasardb/pool.py,sha256=4IFwot-U8GEHo8h86264uVTWge44bOH_TUkoVy3Hjac,8449
7
- quasardb/quasardb.cpython-39-aarch64-linux-gnu.so,sha256=3NWLfNmqcKBrIkUt7k6yp1wKUrwQWle89jKqANXUqLU,2437808
7
+ quasardb/quasardb.cpython-39-aarch64-linux-gnu.so,sha256=KaMauQm0ruL8TFA5RA5bSB6UHiMZ5KHFzI0iLjIXu9E,2371296
8
8
  quasardb/stats.py,sha256=DKvurzur-4c5nVPjr29_Stu9mvwCynM5gGnw0gVQlt8,7387
9
- quasardb/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=YO5MaoHJvrPvAYx1TXVR1oYkw8dmmzh1pPQbShuCauI,701
9
+ quasardb/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0q4qU9XhSICEZPKlyoQH_55P-q8p7HGIVHTXWzMfDNw,701
10
10
  quasardb/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
11
- quasardb/date/Makefile,sha256=0I3uzbKG8WibzLvP0JTGjfoXRnBzdbHdlTm6bXj6ZDs,7828
11
+ quasardb/date/Makefile,sha256=geAPiuIolL4aztlSAnJ47PnyKDXebiIZ4Q90UPUZJeo,7778
12
12
  quasardb/date/cmake_install.cmake,sha256=Z6JHjjrkfhDX9XOMKOgx4WqDyzmaL8tpxl9EuiPzL_8,3314
13
- quasardb/date/dateConfigVersion.cmake,sha256=P9EmpiVM2Ie-mhAcoL0E2O8Xj-5KdFm3SEouZFOkGqA,2878
14
- quasardb/date/dateTargets.cmake,sha256=NBAZ4e11neuoarWP-C201PDmP17kC2yFWSiLPp6WEgk,2922
15
- quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=YO5MaoHJvrPvAYx1TXVR1oYkw8dmmzh1pPQbShuCauI,701
13
+ quasardb/date/dateConfigVersion.cmake,sha256=rL5Cp_r_23Yu8HmjowwKIH04sxxMwdBZ7no3tr4cx14,2762
14
+ quasardb/date/dateTargets.cmake,sha256=7C5nJEzNiKkoqOTdp1qcALdefTs7pQ-YGEBRONd4XdU,2922
15
+ quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0q4qU9XhSICEZPKlyoQH_55P-q8p7HGIVHTXWzMfDNw,701
16
16
  quasardb/date/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
17
- quasardb/date/CMakeFiles/Export/b76006b2b7125baf1b0b4d4ca4db82bd/dateTargets.cmake,sha256=YASFVoV2DQoFI9mMT0u7nfGVhWhbw4mFS1Fkl6uHQHw,4124
17
+ quasardb/date/CMakeFiles/Export/b76006b2b7125baf1b0b4d4ca4db82bd/dateTargets.cmake,sha256=c06OQWjLUtngcVmJI0uObc6NnU18-6jnpI6msBYjAiA,4124
18
18
  quasardb/extensions/__init__.py,sha256=sIyL7ha7_yMPLa3pZwGLSVEqdSKGIZ7Vf16qeB31Xms,145
19
19
  quasardb/extensions/pinned_writer.py,sha256=PmPhwA9FHj--O6soolg6B1ZVzhVuTKStmVJXjTHKDFw,5701
20
- quasardb/numpy/__init__.py,sha256=qiS_1-C-iNySbE7PUEx-AzJ6ThW8xBiqsehhgjeqgHQ,25277
21
- quasardb/pandas/__init__.py,sha256=W7pVpHdxmQCo5f5wzXT4Hcu0oIT-kfuebsGKvq85Twk,15485
22
- quasardb/pybind11/Makefile,sha256=cn4InIDVBnMqaJ2VKnbluZfMQYY8mHaveQ4WfFLT-gQ,7848
20
+ quasardb/numpy/__init__.py,sha256=EzKgvLx-LVnKkKH_2YBhBKQNY0KAp11InSHn3zFUECk,27362
21
+ quasardb/pandas/__init__.py,sha256=M4O90HZ9hqyYyjW63uha-LFfeSy1V4rACXR67voa_-o,15485
22
+ quasardb/pybind11/Makefile,sha256=La74ugMB7ke-wDHZUCpLvrEcaLICYgsEqhTEhUHKFNE,7798
23
23
  quasardb/pybind11/cmake_install.cmake,sha256=_SC3jEAsQUXLYMeOdid7JvtBjQRqpdkbO8TK6qUPPSI,1302
24
- quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=YO5MaoHJvrPvAYx1TXVR1oYkw8dmmzh1pPQbShuCauI,701
24
+ quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0q4qU9XhSICEZPKlyoQH_55P-q8p7HGIVHTXWzMfDNw,701
25
25
  quasardb/pybind11/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
26
- quasardb/range-v3/Makefile,sha256=vhydfgXO31ZBRMEgbUm_5Lv-aihX_kopNWPU0pwtSlw,9073
26
+ quasardb/range-v3/Makefile,sha256=EA0JVTO4pS_wRpK3Z2UUjdKZd6T7sKf9Uh0cLSm9WWc,9023
27
27
  quasardb/range-v3/cmake_install.cmake,sha256=zrXmYtaO_heU4j3_lEs81KYFuzseSGgzevh0jWEcCZw,3423
28
- quasardb/range-v3/range-v3-config-version.cmake,sha256=EitGE1f66tItUbzbF8UuhxBaN9EuTuMsbyqrlr7aG9M,3365
29
- quasardb/range-v3/range-v3-config.cmake,sha256=tK6QQXIQ4hw5v_tWgN47i0ll_D7xT9dUUu2tZFb0ktg,3515
30
- quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=YO5MaoHJvrPvAYx1TXVR1oYkw8dmmzh1pPQbShuCauI,701
28
+ quasardb/range-v3/range-v3-config-version.cmake,sha256=xGi8nCg5dIl5VmCOtTEVVa-dwABxKxLEd1Mx-bUvLLM,3249
29
+ quasardb/range-v3/range-v3-config.cmake,sha256=9SSuO16YcY3EeBRxghj5yqx46KvZ5nYhC5lbj1VKIbE,3515
30
+ quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=0q4qU9XhSICEZPKlyoQH_55P-q8p7HGIVHTXWzMfDNw,701
31
31
  quasardb/range-v3/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
32
- quasardb/range-v3/CMakeFiles/Export/48a02d54b5e9e60c30c5f249b431a911/range-v3-targets.cmake,sha256=sztCOzpFUPuCMrD1XbqGjbZtcs40OOc6v0889lp0Tyg,5178
33
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/DependInfo.cmake,sha256=vlXHUX5E1gZJnT4TbtAMVQT3jCwts0EmUVBA0TQaFCk,423
34
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make,sha256=iWCjulq1QWdGgF3NSuNx9PbVlLZSgEQgoL-9NNDvw5U,3837
32
+ quasardb/range-v3/CMakeFiles/Export/48a02d54b5e9e60c30c5f249b431a911/range-v3-targets.cmake,sha256=_0maZ53cMtAqn60dPzEU29wZyiD_ov0AYjyaHJKrCcs,5178
33
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/DependInfo.cmake,sha256=kiI3HCRhFvdCLM7MufblUMe6DmwEF2u2e7R4aDCVNPU,461
34
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make,sha256=EtqX42OhltSz3lrVn-kb7AVeFDTNPcd-Zd3C_ohGlf8,3787
35
35
  quasardb/range-v3/CMakeFiles/range.v3.headers.dir/cmake_clean.cmake,sha256=3b0pZoiofoRzAiY1l7OLw203ZXp-mm1FUlQHob6i7aU,160
36
36
  quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.make,sha256=Oge9eptzOB-hllw_Tye4o5wiXsIsdq1xm1GGCe0oGFM,126
37
37
  quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.ts,sha256=orKrKpvHulgFBjBgzdeRvCpv0fV7cTffTdaHNqijFJg,120
38
38
  quasardb/range-v3/CMakeFiles/range.v3.headers.dir/progress.make,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
39
39
  quasardb/range-v3/include/range/v3/version.hpp,sha256=d-ToEdR3GnC_p_0RAeS77xL-SVx6EKHgTlWJ9PUQlSQ,586
40
- quasardb-3.13.6.post1.dist-info/LICENSE.md,sha256=CeYyoAr0W_XpOkw526jSfm6uhLMDG3rTYny4_HRhJAQ,1467
41
- quasardb-3.13.6.post1.dist-info/METADATA,sha256=pr_wktcXWYWHrkMlUWAHN8pt7MZP26nm9Imd43GjpDo,1462
42
- quasardb-3.13.6.post1.dist-info/WHEEL,sha256=5uzjFWQncbbUKvWq7yM3nxJJGggWhGLHrnC9TgUCXvY,150
43
- quasardb-3.13.6.post1.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
44
- quasardb-3.13.6.post1.dist-info/RECORD,,
40
+ quasardb-3.13.7.dist-info/LICENSE.md,sha256=4D8uWaUfWtnVDET9cPT43pHIiwt1GHXvEr1rzz49pJw,1467
41
+ quasardb-3.13.7.dist-info/METADATA,sha256=21ZfBCw4_yIA5SzZXNOUBgnXHpoEWojx_IanQgbIEUw,1456
42
+ quasardb-3.13.7.dist-info/WHEEL,sha256=SIpKeEMEn5d6wEWNi6guiW3hSiu5nA1wuuKXWVovQCE,150
43
+ quasardb-3.13.7.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
44
+ quasardb-3.13.7.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.2)
2
+ Generator: bdist_wheel (0.38.4)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-manylinux_2_17_aarch64
5
5
  Tag: cp39-cp39-manylinux2014_aarch64