quasardb 3.14.2.dev5__cp312-cp312-macosx_11_0_arm64.whl → 3.14.2.dev7__cp312-cp312-macosx_11_0_arm64.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.

Files changed (54) hide show
  1. quasardb/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  2. quasardb/Makefile +11 -11
  3. quasardb/__init__.py +8 -5
  4. quasardb/__init__.pyi +72 -0
  5. quasardb/cmake_install.cmake +1 -1
  6. quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  7. quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake +1 -1
  8. quasardb/date/Makefile +11 -11
  9. quasardb/date/cmake_install.cmake +1 -1
  10. quasardb/date/dateTargets.cmake +1 -1
  11. quasardb/libqdb_api.dylib +0 -0
  12. quasardb/numpy/__init__.py +126 -43
  13. quasardb/pandas/__init__.py +55 -20
  14. quasardb/pool.py +6 -0
  15. quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  16. quasardb/pybind11/Makefile +11 -11
  17. quasardb/pybind11/cmake_install.cmake +1 -1
  18. quasardb/quasardb/__init__.pyi +97 -0
  19. quasardb/quasardb/_batch_column.pyi +5 -0
  20. quasardb/quasardb/_batch_inserter.pyi +30 -0
  21. quasardb/quasardb/_blob.pyi +16 -0
  22. quasardb/quasardb/_cluster.pyi +100 -0
  23. quasardb/quasardb/_continuous.pyi +16 -0
  24. quasardb/quasardb/_double.pyi +7 -0
  25. quasardb/quasardb/_entry.pyi +60 -0
  26. quasardb/quasardb/_error.pyi +15 -0
  27. quasardb/quasardb/_integer.pyi +7 -0
  28. quasardb/quasardb/_node.pyi +26 -0
  29. quasardb/quasardb/_options.pyi +105 -0
  30. quasardb/quasardb/_perf.pyi +5 -0
  31. quasardb/quasardb/_properties.pyi +5 -0
  32. quasardb/quasardb/_query.pyi +2 -0
  33. quasardb/quasardb/_reader.pyi +9 -0
  34. quasardb/quasardb/_retry.pyi +16 -0
  35. quasardb/quasardb/_string.pyi +12 -0
  36. quasardb/quasardb/_table.pyi +125 -0
  37. quasardb/quasardb/_tag.pyi +5 -0
  38. quasardb/quasardb/_timestamp.pyi +9 -0
  39. quasardb/quasardb/_writer.pyi +111 -0
  40. quasardb/quasardb/metrics/__init__.pyi +20 -0
  41. quasardb/quasardb.cpython-312-darwin.so +0 -0
  42. quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  43. quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake +1 -1
  44. quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make +3 -3
  45. quasardb/range-v3/Makefile +11 -11
  46. quasardb/range-v3/cmake_install.cmake +1 -1
  47. quasardb/range-v3/range-v3-config.cmake +1 -1
  48. quasardb/stats.py +223 -110
  49. {quasardb-3.14.2.dev5.dist-info → quasardb-3.14.2.dev7.dist-info}/METADATA +3 -2
  50. quasardb-3.14.2.dev7.dist-info/RECORD +69 -0
  51. {quasardb-3.14.2.dev5.dist-info → quasardb-3.14.2.dev7.dist-info}/WHEEL +1 -1
  52. quasardb-3.14.2.dev5.dist-info/RECORD +0 -45
  53. {quasardb-3.14.2.dev5.dist-info → quasardb-3.14.2.dev7.dist-info/licenses}/LICENSE.md +0 -0
  54. {quasardb-3.14.2.dev5.dist-info → quasardb-3.14.2.dev7.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,105 @@
1
+ from __future__ import annotations
2
+
3
+ import datetime
4
+
5
+ class Options:
6
+ class Compression:
7
+ Disabled: Options.Compression # value = <Compression.Disabled: 0>
8
+ Best: Options.Compression # value = <Compression.Best: 2>
9
+ Balanced: Options.Compression # value = <Compression.Balanced: 3>
10
+ __members__: dict[str, Options.Compression]
11
+ def __and__(self, other: object) -> object: ...
12
+ def __eq__(self, other: object) -> bool: ...
13
+ def __ge__(self, other: object) -> bool: ...
14
+ def __getstate__(self) -> int: ...
15
+ def __gt__(self, other: object) -> bool: ...
16
+ def __hash__(self) -> int: ...
17
+ def __index__(self) -> int: ...
18
+ def __init__(self, value: int) -> None: ...
19
+ def __int__(self) -> int: ...
20
+ def __invert__(self) -> object: ...
21
+ def __le__(self, other: object) -> bool: ...
22
+ def __lt__(self, other: object) -> bool: ...
23
+ def __ne__(self, other: object) -> bool: ...
24
+ def __or__(self, other: object) -> object: ...
25
+ def __rand__(self, other: object) -> object: ...
26
+ def __repr__(self) -> str: ...
27
+ def __ror__(self, other: object) -> object: ...
28
+ def __rxor__(self, other: object) -> object: ...
29
+ def __setstate__(self, state: int) -> None: ...
30
+ def __str__(self) -> str: ...
31
+ def __xor__(self, other: object) -> object: ...
32
+ @property
33
+ def name(self) -> str: ...
34
+ @property
35
+ def value(self) -> int: ...
36
+
37
+ class Encryption:
38
+ Disabled: Options.Encryption # value = <Encryption.Disabled: 0>
39
+ AES256GCM: Options.Encryption # value = <Encryption.AES256GCM: 1>
40
+ __members__: dict[str, Options.Encryption]
41
+ def __and__(self, other: object) -> object: ...
42
+ def __eq__(self, other: object) -> bool: ...
43
+ def __ge__(self, other: object) -> bool: ...
44
+ def __getstate__(self) -> int: ...
45
+ def __gt__(self, other: object) -> bool: ...
46
+ def __hash__(self) -> int: ...
47
+ def __index__(self) -> int: ...
48
+ def __init__(self, value: int) -> None: ...
49
+ def __int__(self) -> int: ...
50
+ def __invert__(self) -> object: ...
51
+ def __le__(self, other: object) -> bool: ...
52
+ def __lt__(self, other: object) -> bool: ...
53
+ def __ne__(self, other: object) -> bool: ...
54
+ def __or__(self, other: object) -> object: ...
55
+ def __rand__(self, other: object) -> object: ...
56
+ def __repr__(self) -> str: ...
57
+ def __ror__(self, other: object) -> object: ...
58
+ def __rxor__(self, other: object) -> object: ...
59
+ def __setstate__(self, state: int) -> None: ...
60
+ def __str__(self) -> str: ...
61
+ def __xor__(self, other: object) -> object: ...
62
+ @property
63
+ def name(self) -> str: ...
64
+ @property
65
+ def value(self) -> int: ...
66
+
67
+ def disable_user_properties(self) -> None: ...
68
+ def enable_user_properties(self) -> None: ...
69
+ def get_client_max_batch_load(self) -> int:
70
+ """
71
+ Get the number of shards per thread used for the batch writer.
72
+ """
73
+
74
+ def get_client_max_in_buf_size(self) -> int: ...
75
+ def get_client_max_parallelism(self) -> int: ...
76
+ def get_cluster_max_in_buf_size(self) -> int: ...
77
+ def get_connection_per_address_soft_limit(self) -> int:
78
+ """
79
+ Get the maximum number of connections per qdbd node
80
+ """
81
+
82
+ def get_query_max_length(self) -> int: ...
83
+ def get_stabilization_max_wait(self) -> datetime.timedelta: ...
84
+ def get_timeout(self) -> datetime.timedelta: ...
85
+ def get_timezone(self) -> str: ...
86
+ def set_client_max_batch_load(self, shard_count: int) -> None:
87
+ """
88
+ Adjust the number of shards per thread used for the batch writer.
89
+ """
90
+
91
+ def set_client_max_in_buf_size(self, max_size: int) -> None: ...
92
+ def set_client_soft_memory_limit(self, limit: int) -> None: ...
93
+ def set_cluster_public_key(self, key: str) -> None: ...
94
+ def set_connection_per_address_soft_limit(self, max_count: int) -> None:
95
+ """
96
+ Adjust the maximum number of connections per qdbd node
97
+ """
98
+
99
+ def set_encryption(self, algorithm: Options.Encryption) -> None: ...
100
+ def set_max_cardinality(self, cardinality: int) -> None: ...
101
+ def set_query_max_length(self, query_max_length: int) -> None: ...
102
+ def set_stabilization_max_wait(self, max_wait: datetime.timedelta) -> None: ...
103
+ def set_timeout(self, timeout: datetime.timedelta) -> None: ...
104
+ def set_timezone(self, tz: str) -> None: ...
105
+ def set_user_credentials(self, user: str, private_key: str) -> None: ...
@@ -0,0 +1,5 @@
1
+ class Perf:
2
+ def clear(self) -> None: ...
3
+ def disable(self) -> None: ...
4
+ def enable(self) -> None: ...
5
+ def get(self, flame: bool = False, outfile: str = "") -> object: ...
@@ -0,0 +1,5 @@
1
+ class Properties:
2
+ def clear(self) -> None: ...
3
+ def get(self, key: str) -> str | None: ...
4
+ def put(self, key: str, value: str) -> None: ...
5
+ def remove(self, key: str) -> None: ...
@@ -0,0 +1,2 @@
1
+ class FindQuery:
2
+ def run(self) -> list[str]: ...
@@ -0,0 +1,9 @@
1
+ from __future__ import annotations
2
+
3
+ import typing
4
+
5
+ class Reader:
6
+ def __enter__(self) -> Reader: ...
7
+ def __exit__(self, exc_type: object, exc_value: object, exc_tb: object) -> None: ...
8
+ def __iter__(self) -> typing.Iterator[dict[str, object]]: ...
9
+ def get_batch_size(self) -> int: ...
@@ -0,0 +1,16 @@
1
+ import datetime
2
+
3
+ class RetryOptions:
4
+ delay: datetime.timedelta
5
+ exponent: int
6
+ jitter: float
7
+ retries_left: int
8
+ def __init__(
9
+ self,
10
+ retries: int = 3,
11
+ delay: datetime.timedelta = ...,
12
+ exponent: int = 2,
13
+ jitter: float = 0.1,
14
+ ) -> None: ...
15
+ def has_next(self) -> bool: ...
16
+ def next(self) -> RetryOptions: ...
@@ -0,0 +1,12 @@
1
+ import datetime
2
+
3
+ from ._entry import ExpirableEntry
4
+
5
+ class String(ExpirableEntry):
6
+ def compare_and_swap(self, new_content: str, comparand: str) -> str: ...
7
+ def get(self) -> str: ...
8
+ def get_and_remove(self) -> str: ...
9
+ def get_and_update(self, data: str) -> str: ...
10
+ def put(self, data: str) -> None: ...
11
+ def remove_if(self, comparand: str) -> None: ...
12
+ def update(self, data: str, expiry: datetime.datetime = ...) -> None: ...
@@ -0,0 +1,125 @@
1
+ from __future__ import annotations
2
+
3
+ import datetime
4
+ import typing
5
+
6
+ import numpy
7
+
8
+ from quasardb.quasardb._reader import Reader
9
+
10
+ from ._entry import Entry
11
+
12
+ class ColumnType:
13
+ Uninitialized: ColumnType # value = <ColumnType.Uninitialized: -1>
14
+ Double: ColumnType # value = <ColumnType.Double: 0>
15
+ Blob: ColumnType # value = <ColumnType.Blob: 1>
16
+ Int64: ColumnType # value = <ColumnType.Int64: 2>
17
+ Timestamp: ColumnType # value = <ColumnType.Timestamp: 3>
18
+ String: ColumnType # value = <ColumnType.String: 4>
19
+ Symbol: ColumnType # value = <ColumnType.Symbol: 5>
20
+ __members__: dict[str, ColumnType]
21
+ def __and__(self, other: object) -> object: ...
22
+ def __eq__(self, other: object) -> bool: ...
23
+ def __ge__(self, other: object) -> bool: ...
24
+ def __getstate__(self) -> int: ...
25
+ def __gt__(self, other: object) -> bool: ...
26
+ def __hash__(self) -> int: ...
27
+ def __index__(self) -> int: ...
28
+ def __init__(self, value: int) -> None: ...
29
+ def __int__(self) -> int: ...
30
+ def __invert__(self) -> object: ...
31
+ def __le__(self, other: object) -> bool: ...
32
+ def __lt__(self, other: object) -> bool: ...
33
+ def __ne__(self, other: object) -> bool: ...
34
+ def __or__(self, other: object) -> object: ...
35
+ def __rand__(self, other: object) -> object: ...
36
+ def __repr__(self) -> str: ...
37
+ def __ror__(self, other: object) -> object: ...
38
+ def __rxor__(self, other: object) -> object: ...
39
+ def __setstate__(self, state: int) -> None: ...
40
+ def __str__(self) -> str: ...
41
+ def __xor__(self, other: object) -> object: ...
42
+ @property
43
+ def name(self) -> str: ...
44
+ @property
45
+ def value(self) -> int: ...
46
+
47
+ class ColumnInfo:
48
+ name: str
49
+ symtable: str
50
+ type: ColumnType
51
+ @typing.overload
52
+ def __init__(self, type: ColumnType, name: str) -> None: ...
53
+ @typing.overload
54
+ def __init__(self, type: ColumnType, name: str, symtable: str) -> None: ...
55
+ def __repr__(self) -> str: ...
56
+
57
+ class IndexedColumnInfo:
58
+ @typing.overload
59
+ def __init__(self, type: ColumnType, index: int) -> None: ...
60
+ @typing.overload
61
+ def __init__(self, type: ColumnType, index: int, symtable: str) -> None: ...
62
+ @property
63
+ def index(self) -> int: ...
64
+ @property
65
+ def symtable(self) -> str: ...
66
+ @property
67
+ def type(self) -> ColumnType: ...
68
+
69
+ class Table(Entry):
70
+ def __repr__(self) -> str: ...
71
+ def blob_get_ranges(
72
+ self, column: str, ranges: object = None
73
+ ) -> tuple[numpy.ndarray, numpy.ma.MaskedArray]: ...
74
+ def blob_insert(
75
+ self, column: str, timestamps: numpy.ndarray, values: numpy.ma.MaskedArray
76
+ ) -> None: ...
77
+ def column_id_by_index(self, index: int) -> str: ...
78
+ def column_index_by_id(self, alias: str) -> int: ...
79
+ def column_info_by_index(self, index: int) -> ColumnInfo: ...
80
+ def column_type_by_id(self, alias: str) -> ColumnType: ...
81
+ def column_type_by_index(self, index: int) -> ColumnType: ...
82
+ def create(
83
+ self,
84
+ columns: list[ColumnInfo],
85
+ shard_size: datetime.timedelta = ...,
86
+ ttl: datetime.timedelta = ...,
87
+ ) -> None: ...
88
+ def double_get_ranges(
89
+ self, column: str, ranges: object = None
90
+ ) -> tuple[numpy.ndarray, numpy.ma.MaskedArray]: ...
91
+ def double_insert(
92
+ self, column: str, timestamps: numpy.ndarray, values: numpy.ma.MaskedArray
93
+ ) -> None: ...
94
+ def erase_ranges(self, column: str, ranges: object) -> int: ...
95
+ def get_shard_size(self) -> datetime.timedelta: ...
96
+ def get_ttl(self) -> datetime.timedelta: ...
97
+ def has_ttl(self) -> bool: ...
98
+ def insert_columns(self, columns: list[ColumnInfo]) -> None: ...
99
+ def int64_get_ranges(
100
+ self, column: str, ranges: object = None
101
+ ) -> tuple[numpy.ndarray, numpy.ma.MaskedArray]: ...
102
+ def int64_insert(
103
+ self, column: str, timestamps: numpy.ndarray, values: numpy.ma.MaskedArray
104
+ ) -> None: ...
105
+ def list_columns(self) -> list[ColumnInfo]: ...
106
+ def reader(
107
+ self,
108
+ column_names: list[str] = [],
109
+ batch_size: int = 0,
110
+ ranges: list[tuple] = [],
111
+ ) -> Reader: ...
112
+ def retrieve_metadata(self) -> None: ...
113
+ def string_get_ranges(
114
+ self, column: str, ranges: object = None
115
+ ) -> tuple[numpy.ndarray, numpy.ma.MaskedArray]: ...
116
+ def string_insert(
117
+ self, column: str, timestamps: numpy.ndarray, values: numpy.ma.MaskedArray
118
+ ) -> None: ...
119
+ def subscribe(self, conn: object) -> object: ...
120
+ def timestamp_get_ranges(
121
+ self, column: str, ranges: object = None
122
+ ) -> tuple[numpy.ndarray, numpy.ma.MaskedArray]: ...
123
+ def timestamp_insert(
124
+ self, column: str, timestamps: numpy.ndarray, values: numpy.ma.MaskedArray
125
+ ) -> None: ...
@@ -0,0 +1,5 @@
1
+ from ._entry import Entry
2
+
3
+ class Tag(Entry):
4
+ def count(self) -> int: ...
5
+ def get_entries(self) -> list[str]: ...
@@ -0,0 +1,9 @@
1
+ import datetime
2
+
3
+ from ._entry import ExpirableEntry
4
+
5
+ class Timestamp(ExpirableEntry):
6
+ def add(self, addend: datetime.datetime) -> datetime.datetime: ...
7
+ def get(self) -> datetime.datetime: ...
8
+ def put(self, timestamp: datetime.datetime) -> None: ...
9
+ def update(self, timestamp: datetime.datetime) -> None: ...
@@ -0,0 +1,111 @@
1
+ from __future__ import annotations
2
+
3
+ from ._table import Table
4
+
5
+ class WriterData:
6
+ def __init__(self) -> None: ...
7
+ def append(
8
+ self, table: Table, index: list[object], column_data: list[list[object]]
9
+ ) -> None: ...
10
+ def empty(self) -> bool: ...
11
+
12
+ class WriterPushMode:
13
+ Transactional: WriterPushMode # value = <WriterPushMode.Transactional: 0>
14
+ Truncate: WriterPushMode # value = <WriterPushMode.Truncate: 1>
15
+ Fast: WriterPushMode # value = <WriterPushMode.Fast: 2>
16
+ Async: WriterPushMode # value = <WriterPushMode.Async: 3>
17
+ __members__: dict[str, WriterPushMode]
18
+ def __and__(self, other: object) -> object: ...
19
+ def __eq__(self, other: object) -> bool: ...
20
+ def __ge__(self, other: object) -> bool: ...
21
+ def __getstate__(self) -> int: ...
22
+ def __gt__(self, other: object) -> bool: ...
23
+ def __hash__(self) -> int: ...
24
+ def __index__(self) -> int: ...
25
+ def __init__(self, value: int) -> None: ...
26
+ def __int__(self) -> int: ...
27
+ def __invert__(self) -> object: ...
28
+ def __le__(self, other: object) -> bool: ...
29
+ def __lt__(self, other: object) -> bool: ...
30
+ def __ne__(self, other: object) -> bool: ...
31
+ def __or__(self, other: object) -> object: ...
32
+ def __rand__(self, other: object) -> object: ...
33
+ def __repr__(self) -> str: ...
34
+ def __ror__(self, other: object) -> object: ...
35
+ def __rxor__(self, other: object) -> object: ...
36
+ def __setstate__(self, state: int) -> None: ...
37
+ def __str__(self) -> str: ...
38
+ def __xor__(self, other: object) -> object: ...
39
+ @property
40
+ def name(self) -> str: ...
41
+ @property
42
+ def value(self) -> int: ...
43
+
44
+ class Writer:
45
+ def push(
46
+ self,
47
+ data: WriterData,
48
+ write_through: bool,
49
+ push_mode: WriterPushMode,
50
+ deduplication_mode: str,
51
+ deduplicate: str,
52
+ retries: int,
53
+ range: tuple[object, ...],
54
+ **kwargs,
55
+ ) -> None: ...
56
+ def push_fast(
57
+ self,
58
+ data: WriterData,
59
+ write_through: bool,
60
+ push_mode: WriterPushMode,
61
+ deduplication_mode: str,
62
+ deduplicate: str,
63
+ retries: int,
64
+ range: tuple[object, ...],
65
+ **kwargs,
66
+ ) -> None:
67
+ """Deprecated: Use `writer.push()` instead."""
68
+
69
+ def push_async(
70
+ self,
71
+ data: WriterData,
72
+ write_through: bool,
73
+ push_mode: WriterPushMode,
74
+ deduplication_mode: str,
75
+ deduplicate: str,
76
+ retries: int,
77
+ range: tuple[object, ...],
78
+ **kwargs,
79
+ ) -> None:
80
+ """Deprecated: Use `writer.push()` instead."""
81
+
82
+ def push_truncate(
83
+ self,
84
+ data: WriterData,
85
+ write_through: bool,
86
+ push_mode: WriterPushMode,
87
+ deduplication_mode: str,
88
+ deduplicate: str,
89
+ retries: int,
90
+ range: tuple[object, ...],
91
+ **kwargs,
92
+ ) -> None:
93
+ """Deprecated: Use `writer.push()` instead3."""
94
+
95
+ def start_row(self, table: object, x: object) -> None:
96
+ """Legacy function"""
97
+
98
+ def set_double(self, idx: object, value: object) -> object:
99
+ """Legacy function"""
100
+
101
+ def set_int64(self, idx: object, value: object) -> object:
102
+ """Legacy function"""
103
+
104
+ def set_string(self, idx: object, value: object) -> object:
105
+ """Legacy function"""
106
+
107
+ def set_blob(self, idx: object, value: object) -> object:
108
+ """Legacy function"""
109
+
110
+ def set_timestamp(self, idx: object, value: object) -> object:
111
+ """Legacy function"""
@@ -0,0 +1,20 @@
1
+ """
2
+ Keep track of low-level performance metrics
3
+ """
4
+
5
+ from __future__ import annotations
6
+
7
+ __all__ = ["Measure", "clear", "totals"]
8
+
9
+ class Measure:
10
+ """
11
+ Track all metrics within a block of code
12
+ """
13
+
14
+ def __enter__(self) -> Measure: ...
15
+ def __exit__(self, exc_type: object, exc_value: object, exc_tb: object) -> None: ...
16
+ def __init__(self) -> None: ...
17
+ def get(self) -> dict[str, int]: ...
18
+
19
+ def clear() -> None: ...
20
+ def totals() -> dict[str, int]: ...
Binary file
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.31
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 4.1
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/thirdparty")
@@ -7,7 +7,7 @@ if(CMAKE_VERSION VERSION_LESS "3.0.0")
7
7
  message(FATAL_ERROR "CMake >= 3.0.0 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 3.0.0...3.29)
10
+ cmake_policy(VERSION 3.0.0...3.31)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.31
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 4.1
3
3
 
4
4
  # Delete rule output on recipe failure.
5
5
  .DELETE_ON_ERROR:
@@ -44,10 +44,10 @@ cmake_force:
44
44
  SHELL = /bin/sh
45
45
 
46
46
  # The CMake executable.
47
- CMAKE_COMMAND = /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake
47
+ CMAKE_COMMAND = /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake
48
48
 
49
49
  # The command to remove a file.
50
- RM = /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
50
+ RM = /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
51
51
 
52
52
  # Escaping for special characters.
53
53
  EQUALS = =
@@ -1,5 +1,5 @@
1
1
  # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.31
2
+ # Generated by "Unix Makefiles" Generator, CMake Version 4.1
3
3
 
4
4
  # Default target executed when no arguments are given to make.
5
5
  default_target: all
@@ -48,10 +48,10 @@ cmake_force:
48
48
  SHELL = /bin/sh
49
49
 
50
50
  # The CMake executable.
51
- CMAKE_COMMAND = /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake
51
+ CMAKE_COMMAND = /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake
52
52
 
53
53
  # The command to remove a file.
54
- RM = /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
54
+ RM = /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -E rm -f
55
55
 
56
56
  # Escaping for special characters.
57
57
  EQUALS = =
@@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.m
68
68
  # Special rule for the target edit_cache
69
69
  edit_cache:
70
70
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
71
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
71
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
72
72
  .PHONY : edit_cache
73
73
 
74
74
  # Special rule for the target edit_cache
@@ -78,7 +78,7 @@ edit_cache/fast: edit_cache
78
78
  # Special rule for the target rebuild_cache
79
79
  rebuild_cache:
80
80
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
81
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
81
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
82
82
  .PHONY : rebuild_cache
83
83
 
84
84
  # Special rule for the target rebuild_cache
@@ -97,37 +97,37 @@ list_install_components/fast: list_install_components
97
97
  # Special rule for the target install
98
98
  install: preinstall
99
99
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
100
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
100
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
101
101
  .PHONY : install
102
102
 
103
103
  # Special rule for the target install
104
104
  install/fast: preinstall/fast
105
105
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
106
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
106
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
107
107
  .PHONY : install/fast
108
108
 
109
109
  # Special rule for the target install/local
110
110
  install/local: preinstall
111
111
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
112
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
112
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
113
113
  .PHONY : install/local
114
114
 
115
115
  # Special rule for the target install/local
116
116
  install/local/fast: preinstall/fast
117
117
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
118
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
118
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
119
119
  .PHONY : install/local/fast
120
120
 
121
121
  # Special rule for the target install/strip
122
122
  install/strip: preinstall
123
123
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
124
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
124
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
125
125
  .PHONY : install/strip
126
126
 
127
127
  # Special rule for the target install/strip
128
128
  install/strip/fast: preinstall/fast
129
129
  @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
130
- /Users/teamcity/buildAgent/temp/buildTmp/build-env-jl_nbj8f/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
130
+ /Users/teamcity/buildAgent/temp/buildTmp/build-env-qw4gnk0s/lib/python3.12/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
131
131
  .PHONY : install/strip/fast
132
132
 
133
133
  # The main all target
@@ -34,7 +34,7 @@ endif()
34
34
 
35
35
  # Set path to fallback-tool for dependency-resolution.
36
36
  if(NOT DEFINED CMAKE_OBJDUMP)
37
- set(CMAKE_OBJDUMP "/usr/local/clang16/bin/llvm-objdump")
37
+ set(CMAKE_OBJDUMP "/usr/bin/objdump")
38
38
  endif()
39
39
 
40
40
  if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
@@ -7,7 +7,7 @@ if(CMAKE_VERSION VERSION_LESS "3.0.0")
7
7
  message(FATAL_ERROR "CMake >= 3.0.0 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 3.0.0...3.29)
10
+ cmake_policy(VERSION 3.0.0...3.31)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------