arraykit 1.0.8__tar.gz → 1.0.9__tar.gz
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.
- {arraykit-1.0.8/arraykit.egg-info → arraykit-1.0.9}/PKG-INFO +7 -1
- {arraykit-1.0.8 → arraykit-1.0.9}/README.rst +6 -0
- {arraykit-1.0.8 → arraykit-1.0.9/arraykit.egg-info}/PKG-INFO +7 -1
- {arraykit-1.0.8 → arraykit-1.0.9}/setup.py +1 -1
- {arraykit-1.0.8 → arraykit-1.0.9}/src/__init__.pyi +9 -3
- {arraykit-1.0.8 → arraykit-1.0.9}/LICENSE.txt +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/MANIFEST.in +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/arraykit.egg-info/SOURCES.txt +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/arraykit.egg-info/dependency_links.txt +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/arraykit.egg-info/requires.txt +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/arraykit.egg-info/top_level.txt +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/setup.cfg +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/__init__.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/_arraykit.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/array_go.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/array_go.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/array_to_tuple.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/array_to_tuple.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/auto_map.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/auto_map.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/block_index.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/block_index.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/delimited_to_arrays.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/delimited_to_arrays.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/methods.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/methods.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/py.typed +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/tri_map.c +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/tri_map.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/src/utilities.h +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_array_go.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_auto_map.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_auto_map_property.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_block_index.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_delimited_to_arrays.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_delimited_to_arrays_integration.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_delimited_to_arrays_property.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_nonzero_1d.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_nonzero_1d_property.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_pyi.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_split_after_count.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_tri_map.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_type_discovery.py +0 -0
- {arraykit-1.0.8 → arraykit-1.0.9}/test/test_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arraykit
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: Array utilities for StaticFrame
|
|
5
5
|
Home-page: https://github.com/static-frame/arraykit
|
|
6
6
|
Author: Christopher Ariza, Brandt Bucher, Charles Burkland
|
|
@@ -55,6 +55,12 @@ ArrayKit requires the following:
|
|
|
55
55
|
What is New in ArrayKit
|
|
56
56
|
-------------------------
|
|
57
57
|
|
|
58
|
+
1.0.9
|
|
59
|
+
............
|
|
60
|
+
|
|
61
|
+
Updated types in ``pyi`` file.
|
|
62
|
+
|
|
63
|
+
|
|
58
64
|
1.0.8
|
|
59
65
|
............
|
|
60
66
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arraykit
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: Array utilities for StaticFrame
|
|
5
5
|
Home-page: https://github.com/static-frame/arraykit
|
|
6
6
|
Author: Christopher Ariza, Brandt Bucher, Charles Burkland
|
|
@@ -55,6 +55,12 @@ ArrayKit requires the following:
|
|
|
55
55
|
What is New in ArrayKit
|
|
56
56
|
-------------------------
|
|
57
57
|
|
|
58
|
+
1.0.9
|
|
59
|
+
............
|
|
60
|
+
|
|
61
|
+
Updated types in ``pyi`` file.
|
|
62
|
+
|
|
63
|
+
|
|
58
64
|
1.0.8
|
|
59
65
|
............
|
|
60
66
|
|
|
@@ -31,6 +31,12 @@ class ErrorInitTypeBlocks(RuntimeError):
|
|
|
31
31
|
def with_traceback(self, tb: Exception) -> Exception: ...
|
|
32
32
|
def __setstate__(self) -> None: ...
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
class NonUniqueError(RuntimeError):
|
|
36
|
+
def __init__(self, *args: tp.Any, **kwargs: tp.Any) -> None: ...
|
|
37
|
+
def with_traceback(self, tb: Exception) -> Exception: ...
|
|
38
|
+
def __setstate__(self) -> None: ...
|
|
39
|
+
|
|
34
40
|
class ArrayGO:
|
|
35
41
|
values: np.ndarray
|
|
36
42
|
def __init__(
|
|
@@ -110,7 +116,7 @@ class BlockIndex:
|
|
|
110
116
|
|
|
111
117
|
|
|
112
118
|
class FrozenAutoMap:
|
|
113
|
-
def __init__(self, labels: tp.Iterable[_TLabel] | np.ndarray, /,) -> None: ...
|
|
119
|
+
def __init__(self, labels: tp.Iterable[_TLabel] | np.ndarray = (), /,) -> None: ...
|
|
114
120
|
def get(self, __key: _TLabel, /,) -> int: ...
|
|
115
121
|
def keys(self) -> tp.Iterator[_TLabel]: ...
|
|
116
122
|
def items(self) -> tp.Iterator[tuple[_TLabel, int]]: ...
|
|
@@ -133,9 +139,9 @@ class FrozenAutoMap:
|
|
|
133
139
|
|
|
134
140
|
|
|
135
141
|
class AutoMap(FrozenAutoMap):
|
|
136
|
-
def __init__(self, labels: tp.Iterable[_TLabel] | np.ndarray, /,) -> None: ...
|
|
142
|
+
def __init__(self, labels: tp.Iterable[_TLabel] | np.ndarray = (), /,) -> None: ...
|
|
137
143
|
def __ior__(self) -> tp.Any: ...
|
|
138
|
-
def add(self, __key:
|
|
144
|
+
def add(self, __key: _TLabel) -> None: ...
|
|
139
145
|
def update(self, __keys: tp.Iterable[_TLabel] | np.ndarray) -> None: ...
|
|
140
146
|
|
|
141
147
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|