Skip to content

Commit 17a3fee

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

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,10 @@ 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", "pandas/_libs/src/klib/khash.h"]
531+
+ _pxi_dep["hashtable"]
532+
),
530533
},
531534
"_libs.index": {
532535
"pyxfile": "_libs/index",

0 commit comments

Comments
 (0)