Skip to content

Commit

Permalink
Merge pull request static-frame#170 from chaburkland/burkland/split_u…
Browse files Browse the repository at this point in the history
…p_main_source_file

Burkland/split up main source file
  • Loading branch information
flexatone authored Jun 24, 2024
2 parents 55e19ee + 8d551e9 commit f6b3008
Show file tree
Hide file tree
Showing 17 changed files with 7,610 additions and 7,497 deletions.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,15 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:

ak_extension = Extension(
name='arraykit._arraykit', # build into module
sources=['src/_arraykit.c'],
sources=[
'src/_arraykit.c',
'src/array_go.c',
'src/array_to_tuple.c',
'src/block_index.c',
'src/delimited_to_arrays.c',
'src/methods.c',
'src/tri_map.c',
],
include_dirs=get_ext_dir('numpy', 'core', 'include'),
library_dirs=get_ext_dir('numpy', 'core', 'lib'),
define_macros=[("AK_VERSION", AK_VERSION)],
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
from ._arraykit import dtype_from_element as dtype_from_element
from ._arraykit import delimited_to_arrays as delimited_to_arrays
from ._arraykit import iterable_str_to_array_1d as iterable_str_to_array_1d
from ._arraykit import get_new_indexers_and_screen as get_new_indexers_and_screen
from ._arraykit import split_after_count as split_after_count
from ._arraykit import get_new_indexers_and_screen as get_new_indexers_and_screen
from ._arraykit import count_iteration as count_iteration
from ._arraykit import first_true_1d as first_true_1d
from ._arraykit import first_true_2d as first_true_2d
Expand Down
Loading

0 comments on commit f6b3008

Please sign in to comment.