arraykit 1.0.0__tar.gz → 1.0.8__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.
Files changed (46) hide show
  1. arraykit-1.0.8/PKG-INFO +467 -0
  2. {arraykit-1.0.0 → arraykit-1.0.8}/README.rst +50 -2
  3. arraykit-1.0.8/arraykit.egg-info/PKG-INFO +467 -0
  4. {arraykit-1.0.0 → arraykit-1.0.8}/setup.py +17 -6
  5. {arraykit-1.0.0 → arraykit-1.0.8}/src/auto_map.c +15 -19
  6. {arraykit-1.0.0 → arraykit-1.0.8}/src/tri_map.c +0 -9
  7. {arraykit-1.0.0 → arraykit-1.0.8}/src/utilities.h +17 -0
  8. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_auto_map.py +41 -0
  9. arraykit-1.0.0/PKG-INFO +0 -41
  10. arraykit-1.0.0/arraykit.egg-info/PKG-INFO +0 -41
  11. {arraykit-1.0.0 → arraykit-1.0.8}/LICENSE.txt +0 -0
  12. {arraykit-1.0.0 → arraykit-1.0.8}/MANIFEST.in +0 -0
  13. {arraykit-1.0.0 → arraykit-1.0.8}/arraykit.egg-info/SOURCES.txt +0 -0
  14. {arraykit-1.0.0 → arraykit-1.0.8}/arraykit.egg-info/dependency_links.txt +0 -0
  15. {arraykit-1.0.0 → arraykit-1.0.8}/arraykit.egg-info/requires.txt +0 -0
  16. {arraykit-1.0.0 → arraykit-1.0.8}/arraykit.egg-info/top_level.txt +0 -0
  17. {arraykit-1.0.0 → arraykit-1.0.8}/setup.cfg +0 -0
  18. {arraykit-1.0.0 → arraykit-1.0.8}/src/__init__.py +0 -0
  19. {arraykit-1.0.0 → arraykit-1.0.8}/src/__init__.pyi +0 -0
  20. {arraykit-1.0.0 → arraykit-1.0.8}/src/_arraykit.c +0 -0
  21. {arraykit-1.0.0 → arraykit-1.0.8}/src/array_go.c +0 -0
  22. {arraykit-1.0.0 → arraykit-1.0.8}/src/array_go.h +0 -0
  23. {arraykit-1.0.0 → arraykit-1.0.8}/src/array_to_tuple.c +0 -0
  24. {arraykit-1.0.0 → arraykit-1.0.8}/src/array_to_tuple.h +0 -0
  25. {arraykit-1.0.0 → arraykit-1.0.8}/src/auto_map.h +0 -0
  26. {arraykit-1.0.0 → arraykit-1.0.8}/src/block_index.c +0 -0
  27. {arraykit-1.0.0 → arraykit-1.0.8}/src/block_index.h +0 -0
  28. {arraykit-1.0.0 → arraykit-1.0.8}/src/delimited_to_arrays.c +0 -0
  29. {arraykit-1.0.0 → arraykit-1.0.8}/src/delimited_to_arrays.h +0 -0
  30. {arraykit-1.0.0 → arraykit-1.0.8}/src/methods.c +0 -0
  31. {arraykit-1.0.0 → arraykit-1.0.8}/src/methods.h +0 -0
  32. {arraykit-1.0.0 → arraykit-1.0.8}/src/py.typed +0 -0
  33. {arraykit-1.0.0 → arraykit-1.0.8}/src/tri_map.h +0 -0
  34. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_array_go.py +0 -0
  35. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_auto_map_property.py +0 -0
  36. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_block_index.py +0 -0
  37. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_delimited_to_arrays.py +0 -0
  38. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_delimited_to_arrays_integration.py +0 -0
  39. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_delimited_to_arrays_property.py +0 -0
  40. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_nonzero_1d.py +0 -0
  41. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_nonzero_1d_property.py +0 -0
  42. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_pyi.py +0 -0
  43. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_split_after_count.py +0 -0
  44. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_tri_map.py +0 -0
  45. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_type_discovery.py +0 -0
  46. {arraykit-1.0.0 → arraykit-1.0.8}/test/test_util.py +0 -0
@@ -0,0 +1,467 @@
1
+ Metadata-Version: 2.4
2
+ Name: arraykit
3
+ Version: 1.0.8
4
+ Summary: Array utilities for StaticFrame
5
+ Home-page: https://github.com/static-frame/arraykit
6
+ Author: Christopher Ariza, Brandt Bucher, Charles Burkland
7
+ License: MIT
8
+ Keywords: numpy array
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development
12
+ Classifier: Programming Language :: C
13
+ Classifier: Programming Language :: Python :: Implementation :: CPython
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: MacOS :: MacOS X
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Typing :: Typed
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/x-rst
25
+ License-File: LICENSE.txt
26
+ Requires-Dist: numpy>=1.24.3
27
+ Dynamic: author
28
+ Dynamic: classifier
29
+ Dynamic: description
30
+ Dynamic: description-content-type
31
+ Dynamic: home-page
32
+ Dynamic: keywords
33
+ Dynamic: license
34
+ Dynamic: license-file
35
+ Dynamic: requires-dist
36
+ Dynamic: requires-python
37
+ Dynamic: summary
38
+
39
+ The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.
40
+
41
+ Code: https://github.com/InvestmentSystems/arraykit
42
+
43
+ Packages: https://pypi.org/project/arraykit
44
+
45
+
46
+ Dependencies
47
+ --------------
48
+
49
+ ArrayKit requires the following:
50
+
51
+ - Python>=3.10
52
+ - numpy>=1.24.3
53
+
54
+
55
+ What is New in ArrayKit
56
+ -------------------------
57
+
58
+ 1.0.8
59
+ ............
60
+
61
+ NumPy ``datetime64`` scalar lookups in ``AutoMap`` and ``FrozenAutoMap`` explicitly require matching units.
62
+
63
+
64
+ 1.0.7
65
+ ............
66
+
67
+ Updated build configuration.
68
+
69
+
70
+ 1.0.6
71
+ ............
72
+
73
+ Updated build configuration.
74
+
75
+
76
+ 1.0.5
77
+ ............
78
+
79
+ Updated build configuration.
80
+
81
+
82
+ 1.0.4
83
+ ............
84
+
85
+ Updated build configuration.
86
+
87
+
88
+ 1.0.3
89
+ ............
90
+
91
+ Updated build configuration.
92
+
93
+
94
+ 1.0.2
95
+ ............
96
+
97
+ Updated build configuration.
98
+
99
+
100
+ 1.0.1
101
+ ............
102
+
103
+ Updated build configuration.
104
+
105
+
106
+ 1.0.0
107
+ ............
108
+
109
+ Integrated ``AutoMap`` and ``FrozenAutoMap`` from ``arraymap``.
110
+
111
+ Removed global integer cache from ``AutoMap`` and ``FrozenAutoMap`` for thread safety.
112
+
113
+
114
+ 0.10.0
115
+ ............
116
+
117
+ Now building wheels for Python 3.13.
118
+
119
+
120
+ 0.9.0
121
+ ............
122
+
123
+ Added ``TriMap.map_merge()``.
124
+
125
+
126
+ 0.8.3
127
+ ............
128
+
129
+ Corrected incorrect component of ``_TLabel`` in ``__init__.pyi``.
130
+
131
+
132
+ 0.8.2
133
+ ............
134
+
135
+ Updated build configuration.
136
+
137
+
138
+ 0.8.1
139
+ ............
140
+
141
+ Updated build configuration.
142
+
143
+
144
+ 0.8.0
145
+ ............
146
+
147
+ Now building with NumPy 2.0.
148
+
149
+
150
+ 0.7.2
151
+ ............
152
+
153
+ Improved ``array_to_tuple_array()`` and ``array_to_tuple_iter()`` to preserve ``tuple`` in 1D arrays.
154
+
155
+
156
+ 0.7.1
157
+ ............
158
+
159
+ Extended ``array_to_tuple_array()`` and ``array_to_tuple_iter()`` to support 1D arrays.
160
+
161
+
162
+ 0.7.0
163
+ ............
164
+
165
+ Added ``array_to_tuple_array()``.
166
+
167
+ Added ``array_to_tuple_iter()``.
168
+
169
+
170
+ 0.6.3
171
+ ............
172
+
173
+ Optimized memory allocation strategy for ``nonzero_1d()``.
174
+
175
+
176
+ 0.6.2
177
+ ............
178
+
179
+ Extended ``nonzero_1d()`` to support non-contiguous arrays.
180
+
181
+ Optimizations to ``TriMap`` when mapping to object and flexible dtypes.
182
+
183
+
184
+ 0.6.1
185
+ ............
186
+
187
+ Enhancements and optimizations to ``TriMap``.
188
+
189
+ Added ``nonzero_1d()``.
190
+
191
+
192
+ 0.6.0
193
+ ............
194
+
195
+ Added ``TriMap`` utility class for join optimization.
196
+
197
+
198
+ 0.5.1
199
+ ............
200
+
201
+ Restored functional wheels for Mac OS ``x86_64``.
202
+
203
+
204
+ 0.5.0
205
+ ............
206
+
207
+ Now building wheels for 3.12.
208
+
209
+ Now building functional wheels for Mac OS ``arm64`` / Apple Silicon.
210
+
211
+
212
+ 0.4.11
213
+ ............
214
+
215
+ Updated types in ``pyi`` file.
216
+
217
+
218
+ 0.4.10
219
+ ............
220
+
221
+ Updated types in ``pyi`` file.
222
+
223
+ Minimum supported Python set to 3.8.
224
+
225
+ Minimum supported NumPy set to 1.19.5.
226
+
227
+
228
+ 0.4.9
229
+ ............
230
+
231
+ Improved performance of ``first_true_1d()`` and ``first_true_2d()``.
232
+
233
+
234
+ 0.4.8
235
+ ............
236
+
237
+ Restored behavior of ``Blockndex.rows`` to return -1 when ``BlockIndex`` has zero rows.
238
+
239
+
240
+ 0.4.7
241
+ ............
242
+
243
+ Added ``BlockIndex.iter_block()``.
244
+
245
+ Corrected issue in ``BlockIndex.shape`` when the ``BlockIndex`` has zero rows.
246
+
247
+
248
+ 0.4.6
249
+ ............
250
+
251
+ Corrected handling of empty selections in ``BlockIndex.iter_contiguous()``.
252
+
253
+
254
+ 0.4.5
255
+ ............
256
+
257
+ Corrected handling of ``ascending`` in ``BlockIndex.iter_contiguous()`` with Boolean arrays.
258
+
259
+
260
+ 0.4.4
261
+ ............
262
+
263
+ Corrected deallocation routines in ``BlockIndex.iter_contiguous()``.
264
+
265
+
266
+ 0.4.3
267
+ ............
268
+
269
+ Added ``BlockIndex.iter_contiguous()`` with options for ``ascending`` and ``reduce`` sequences.
270
+
271
+
272
+ 0.4.2
273
+ ............
274
+
275
+ Added ``slice_to_ascending_slice()``.
276
+
277
+ Updated ``BlockIndex.shape`` to internally cache the shape tuple.
278
+
279
+ Corrected ``BlockIndex.iter_select()`` handling of negative integers in sequences.
280
+
281
+
282
+ 0.4.1
283
+ ............
284
+
285
+ Updated ``BlockIndex.register()`` to handle 0-column 2D arrays and return False.
286
+
287
+ Added ``BlockIndex.rows``, ``BlockIndex.columns`` properties.
288
+
289
+ Updated unset ``BlockIndex.dtype`` to return a float dtype.
290
+
291
+
292
+ 0.4.0
293
+ ............
294
+
295
+ Added ``BlockIndex``, a tool to be used by ``TypeBlocks`` for mapping realized column positions to arrays.
296
+
297
+ Corrected potential issue in ``AK_CPL_resize_buffer`` that could segfault for very large offsets.
298
+
299
+
300
+ 0.3.4
301
+ ............
302
+
303
+ Simplified implementation of ``NaTType`` identification in ``isna_element()``.
304
+
305
+
306
+ 0.3.3
307
+ ............
308
+
309
+ Corrected potential memory leak in ``isna_element()``.
310
+
311
+
312
+ 0.3.2
313
+ ............
314
+
315
+ Optimization to ``delimited_to_arrays()`` character reading per line.
316
+
317
+
318
+ 0.3.1
319
+ ............
320
+
321
+ Improvements to ``delimited_to_arrays()``, including proper loading of ``float16`` types.
322
+
323
+ Extended ``deepcopy_array()`` to permit ``memo`` as None.
324
+
325
+ Corrected all compiler warnings on Windows.
326
+
327
+
328
+ 0.3.0
329
+ ............
330
+
331
+ Added ``first_true_1d()``, ``first_true_2d()``. Added tools for performance graphing.
332
+
333
+
334
+ 0.2.9
335
+ ............
336
+
337
+ Corrected segmentation fault resulting from attempting to parse invalid ``datetime64`` strings in ``AK_CPL_to_array_via_cast``.
338
+
339
+
340
+ 0.2.8
341
+ ............
342
+
343
+ Added ``include_none`` argument to ``isna_element()``; implemented identification of Pandas pd.Timestamp NaT.
344
+
345
+
346
+ 0.2.7
347
+ ............
348
+
349
+ Updated most-recent NumPy references to 1.23.5.
350
+
351
+
352
+ 0.2.6
353
+ ............
354
+
355
+ Maintenance release.
356
+
357
+
358
+ 0.2.5
359
+ ............
360
+
361
+ Optimization to numerical array creation in ``delimited_to_arrays()``.
362
+
363
+
364
+ 0.2.4
365
+ ............
366
+
367
+ Set NumPy minimum version at 1.18.5.
368
+
369
+
370
+ 0.2.3
371
+ ............
372
+
373
+ Extended arguments to and functionality in ``split_after_count()`` to support the complete CSV dialect interface.
374
+
375
+ Now building wheels for 3.11.
376
+
377
+
378
+ 0.2.2
379
+ ............
380
+
381
+ Refinements to ensure typed-parsed ints are always int64 in ``delimited_to_arrays()``.
382
+
383
+
384
+ 0.2.1
385
+ ............
386
+
387
+ Implemented ``count_iteration``, ``split_after_count``.
388
+
389
+
390
+ 0.2.0
391
+ ............
392
+
393
+ Implemented ``delimited_to_arrays``, ``iterable_str_to_array_1d``.
394
+
395
+
396
+ 0.1.13
397
+ ............
398
+
399
+ Now building Python 3.10 wheels.
400
+
401
+
402
+ 0.1.12
403
+ ............
404
+
405
+ Added ``get_new_indexers_and_screen``.
406
+
407
+
408
+ 0.1.10
409
+ ............
410
+
411
+ Updated minimum NumPy to 1.18.5
412
+
413
+
414
+ 0.1.9
415
+ ............
416
+
417
+ Improvements to performance of ``array_deepcopy``.
418
+
419
+ Added ``dtype_from_element``.
420
+
421
+
422
+ 0.1.8
423
+ ............
424
+
425
+ Revised cross compile releases.
426
+
427
+
428
+ 0.1.7
429
+ ............
430
+
431
+ Added ``dtype_from_element()``.
432
+
433
+
434
+ 0.1.6
435
+ ............
436
+
437
+ Explicit imports in ``__init__.py`` for better static analysis.
438
+
439
+
440
+ 0.1.5
441
+ ............
442
+
443
+ Added ``isna_element()``.
444
+
445
+
446
+ 0.1.3
447
+ ............
448
+
449
+ Redesigned package structure for inclusion of ``py.typed`` and ``__init__.pyi``.
450
+
451
+ ``array_deepcopy`` now accepts kwargs and makes the ``memo`` dict optional.
452
+
453
+
454
+ 0.1.2
455
+ ..........
456
+
457
+ Maintenance release of the following interfaces:
458
+
459
+ ``immutable_filter``
460
+ ``mloc``
461
+ ``shape_filter``
462
+ ``column_2d_filter``
463
+ ``column_1d_filter``
464
+ ``row_1d_filter``
465
+ ``array_deepcopy``
466
+ ``resolve_dtype``
467
+ ``resolve_dtype_iter``
@@ -35,12 +35,60 @@ ArrayKit requires the following:
35
35
  What is New in ArrayKit
36
36
  -------------------------
37
37
 
38
+ 1.0.8
39
+ ............
40
+
41
+ NumPy ``datetime64`` scalar lookups in ``AutoMap`` and ``FrozenAutoMap`` explicitly require matching units.
42
+
43
+
44
+ 1.0.7
45
+ ............
46
+
47
+ Updated build configuration.
48
+
49
+
50
+ 1.0.6
51
+ ............
52
+
53
+ Updated build configuration.
54
+
55
+
56
+ 1.0.5
57
+ ............
58
+
59
+ Updated build configuration.
60
+
61
+
62
+ 1.0.4
63
+ ............
64
+
65
+ Updated build configuration.
66
+
67
+
68
+ 1.0.3
69
+ ............
70
+
71
+ Updated build configuration.
72
+
73
+
74
+ 1.0.2
75
+ ............
76
+
77
+ Updated build configuration.
78
+
79
+
80
+ 1.0.1
81
+ ............
82
+
83
+ Updated build configuration.
84
+
85
+
38
86
  1.0.0
39
87
  ............
40
88
 
41
- Integrated `AutoMap` and `FrozenAutoMap` from `arraymap`.
89
+ Integrated ``AutoMap`` and ``FrozenAutoMap`` from ``arraymap``.
42
90
 
43
- Removed global integer cache from `AutoMap` and `FrozenAutoMap` for thread safety.
91
+ Removed global integer cache from ``AutoMap`` and ``FrozenAutoMap`` for thread safety.
44
92
 
45
93
 
46
94
  0.10.0