You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
475 B
18 lines
475 B
py.extension_module(
|
|
'aggregations',
|
|
['aggregations.pyx'],
|
|
cython_args: ['-X always_allow_keywords=true'],
|
|
include_directories: [inc_np, inc_pd],
|
|
subdir: 'pandas/_libs/window',
|
|
override_options : ['cython_language=cpp'],
|
|
install: true
|
|
)
|
|
|
|
py.extension_module(
|
|
'indexers',
|
|
['indexers.pyx'],
|
|
cython_args: ['-X always_allow_keywords=true'],
|
|
include_directories: [inc_np, inc_pd],
|
|
subdir: 'pandas/_libs/window',
|
|
install: true
|
|
)
|
|
|