arraykit 1.2.0__tar.gz → 1.2.1__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 (49) hide show
  1. {arraykit-1.2.0/arraykit.egg-info → arraykit-1.2.1}/PKG-INFO +8 -1
  2. {arraykit-1.2.0 → arraykit-1.2.1}/README.rst +7 -0
  3. arraykit-1.2.1/VERSION +2 -0
  4. {arraykit-1.2.0 → arraykit-1.2.1/arraykit.egg-info}/PKG-INFO +8 -1
  5. {arraykit-1.2.0 → arraykit-1.2.1}/src/delimited_to_arrays.c +2 -1
  6. arraykit-1.2.0/VERSION +0 -2
  7. {arraykit-1.2.0 → arraykit-1.2.1}/LICENSE.txt +0 -0
  8. {arraykit-1.2.0 → arraykit-1.2.1}/MANIFEST.in +0 -0
  9. {arraykit-1.2.0 → arraykit-1.2.1}/arraykit.egg-info/SOURCES.txt +0 -0
  10. {arraykit-1.2.0 → arraykit-1.2.1}/arraykit.egg-info/dependency_links.txt +0 -0
  11. {arraykit-1.2.0 → arraykit-1.2.1}/arraykit.egg-info/requires.txt +0 -0
  12. {arraykit-1.2.0 → arraykit-1.2.1}/arraykit.egg-info/top_level.txt +0 -0
  13. {arraykit-1.2.0 → arraykit-1.2.1}/pyproject.toml +0 -0
  14. {arraykit-1.2.0 → arraykit-1.2.1}/setup.cfg +0 -0
  15. {arraykit-1.2.0 → arraykit-1.2.1}/setup.py +0 -0
  16. {arraykit-1.2.0 → arraykit-1.2.1}/src/__init__.py +0 -0
  17. {arraykit-1.2.0 → arraykit-1.2.1}/src/__init__.pyi +0 -0
  18. {arraykit-1.2.0 → arraykit-1.2.1}/src/_arraykit.c +0 -0
  19. {arraykit-1.2.0 → arraykit-1.2.1}/src/array_go.c +0 -0
  20. {arraykit-1.2.0 → arraykit-1.2.1}/src/array_go.h +0 -0
  21. {arraykit-1.2.0 → arraykit-1.2.1}/src/array_to_tuple.c +0 -0
  22. {arraykit-1.2.0 → arraykit-1.2.1}/src/array_to_tuple.h +0 -0
  23. {arraykit-1.2.0 → arraykit-1.2.1}/src/auto_map.c +0 -0
  24. {arraykit-1.2.0 → arraykit-1.2.1}/src/auto_map.h +0 -0
  25. {arraykit-1.2.0 → arraykit-1.2.1}/src/block_index.c +0 -0
  26. {arraykit-1.2.0 → arraykit-1.2.1}/src/block_index.h +0 -0
  27. {arraykit-1.2.0 → arraykit-1.2.1}/src/delimited_to_arrays.h +0 -0
  28. {arraykit-1.2.0 → arraykit-1.2.1}/src/methods.c +0 -0
  29. {arraykit-1.2.0 → arraykit-1.2.1}/src/methods.h +0 -0
  30. {arraykit-1.2.0 → arraykit-1.2.1}/src/py.typed +0 -0
  31. {arraykit-1.2.0 → arraykit-1.2.1}/src/tri_map.c +0 -0
  32. {arraykit-1.2.0 → arraykit-1.2.1}/src/tri_map.h +0 -0
  33. {arraykit-1.2.0 → arraykit-1.2.1}/src/utilities.h +0 -0
  34. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_array_go.py +0 -0
  35. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_astype_array.py +0 -0
  36. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_auto_map.py +0 -0
  37. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_auto_map_property.py +0 -0
  38. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_block_index.py +0 -0
  39. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_delimited_to_arrays.py +0 -0
  40. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_delimited_to_arrays_integration.py +0 -0
  41. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_delimited_to_arrays_property.py +0 -0
  42. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_nonzero_1d.py +0 -0
  43. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_nonzero_1d_property.py +0 -0
  44. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_objectable.py +0 -0
  45. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_pyi.py +0 -0
  46. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_split_after_count.py +0 -0
  47. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_tri_map.py +0 -0
  48. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_type_discovery.py +0 -0
  49. {arraykit-1.2.0 → arraykit-1.2.1}/test/test_util.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arraykit
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Array utilities for StaticFrame
5
5
  Author: Christopher Ariza, Brandt Bucher, Charles Burkland
6
6
  License-Expression: MIT
@@ -64,6 +64,13 @@ ArrayKit requires the following:
64
64
  What is New in ArrayKit
65
65
  -------------------------
66
66
 
67
+
68
+ 1.2.1
69
+ ............
70
+
71
+ Minor improvement in efficiency of string-to-float conversion in ``delimited_to_arrays()``.
72
+
73
+
67
74
  1.2.0
68
75
  ............
69
76
 
@@ -35,6 +35,13 @@ ArrayKit requires the following:
35
35
  What is New in ArrayKit
36
36
  -------------------------
37
37
 
38
+
39
+ 1.2.1
40
+ ............
41
+
42
+ Minor improvement in efficiency of string-to-float conversion in ``delimited_to_arrays()``.
43
+
44
+
38
45
  1.2.0
39
46
  ............
40
47
 
arraykit-1.2.1/VERSION ADDED
@@ -0,0 +1,2 @@
1
+ 1.2.1
2
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arraykit
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Array utilities for StaticFrame
5
5
  Author: Christopher Ariza, Brandt Bucher, Charles Burkland
6
6
  License-Expression: MIT
@@ -64,6 +64,13 @@ ArrayKit requires the following:
64
64
  What is New in ArrayKit
65
65
  -------------------------
66
66
 
67
+
68
+ 1.2.1
69
+ ............
70
+
71
+ Minor improvement in efficiency of string-to-float conversion in ``delimited_to_arrays()``.
72
+
73
+
67
74
  1.2.0
68
75
  ............
69
76
 
@@ -169,6 +169,7 @@ AK_TPS_Resolve(AK_TypeParserState previous, AK_TypeParserState new) {
169
169
  }
170
170
  // numerical promotion
171
171
  if (previous == TPS_INT) {
172
+ // this means that an empty field will not force integer to string
172
173
  if (new == TPS_EMPTY || new == TPS_INT) return TPS_INT;
173
174
  if (new == TPS_FLOAT) return TPS_FLOAT;
174
175
  if (new == TPS_COMPLEX) return TPS_COMPLEX;
@@ -809,7 +810,7 @@ static inline npy_float64
809
810
  AK_UCS4_to_float64(Py_UCS4 *p_item, Py_UCS4 *end, int *error, char tsep, char decc)
810
811
  {
811
812
  // Cache powers of 10 in memory.
812
- npy_float64 e[] = {
813
+ static const npy_float64 e[] = {
813
814
  1., 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9,
814
815
  1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
815
816
  1e20, 1e21, 1e22, 1e23, 1e24, 1e25, 1e26, 1e27, 1e28, 1e29,
arraykit-1.2.0/VERSION DELETED
@@ -1,2 +0,0 @@
1
- 1.2.0
2
-
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