Skip to content

Commit 3470a0b

Browse files
committed
adding missing dependency, otherwise changing khash.h does not trigger rebuild
1 parent 897512d commit 3470a0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,9 @@ def srcpath(name=None, suffix=".pyx", subdir="src"):
526526
"_libs.hashtable": {
527527
"pyxfile": "_libs/hashtable",
528528
"include": klib_include,
529-
"depends": (["pandas/_libs/src/klib/khash_python.h"] + _pxi_dep["hashtable"]),
529+
"depends": ([
530+
"pandas/_libs/src/klib/khash_python.h",
531+
"pandas/_libs/src/klib/khash.h"] + _pxi_dep["hashtable"]),
530532
},
531533
"_libs.index": {
532534
"pyxfile": "_libs/index",

0 commit comments

Comments
 (0)