Skip to content

Commit a09b012

Browse files
committed
0.8.1 RC 1
1 parent a72b5ea commit a09b012

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ ArrayKit requires the following:
3737
What is New in ArrayKit
3838
-------------------------
3939

40+
41+
0.8.1
42+
............
43+
44+
Updated build ``include_dirs`` configuration.
45+
46+
4047
0.8.0
4148
............
4249

setup.py

Lines changed: 2 additions & 2 deletions
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.8.0'
8+
AK_VERSION = '0.8.1'
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.
@@ -41,7 +41,7 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
4141
'src/methods.c',
4242
'src/tri_map.c',
4343
],
44-
include_dirs=get_ext_dir('numpy', '_core', 'include'),
44+
include_dirs=get_ext_dir('numpy', '_core', 'include') + ['src'],
4545
library_dirs=get_ext_dir('numpy', '_core', 'lib'),
4646
define_macros=[("AK_VERSION", AK_VERSION)],
4747
libraries=['npymath'], # not including mlib at this time

0 commit comments

Comments
 (0)