Skip to content

Commit ce5e117

Browse files
committed
0.4.10 RC 1
1 parent 4edc75b commit ce5e117

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,13 @@ ArrayKit requires the following:
3737
What is New in ArrayKit
3838
-------------------------
3939

40-
0.4.10-dev
40+
0.4.10
4141
............
4242

43+
Updated types in ``pyi`` file.
44+
4345
Minimum supported Python set to 3.8.
46+
4447
Minimum supported NumPy set to 1.19.5.
4548

4649

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from pathlib import Path
77

8-
AK_VERSION = '0.4.9'
8+
AK_VERSION = '0.4.10'
99

1010
def get_long_description() -> str:
1111
return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.

src/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class BlockIndex:
4040
dtype: np.dtype = None,
4141
) -> None: ...
4242
def register(self, __value: np.ndarray) -> bool: ...
43-
def to_list(self,) -> tp.List[int]: ...
43+
def to_list(self,) -> tp.List[tp.Tuple[int, int]]: ...
4444
def to_bytes(self,) -> bytes: ...
4545
def copy(self,) -> 'BlockIndex': ...
4646
def __len__(self,) -> int: ...

0 commit comments

Comments
 (0)