File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -485,13 +485,18 @@ def pxd(name):
485
485
macros = [('__LITTLE_ENDIAN__' , '1' )]
486
486
487
487
packer_ext = Extension ('pandas.msgpack._packer' ,
488
+ depends = ['pandas/src/msgpack/pack.h' ,
489
+ 'pandas/src/msgpack/pack_template.h' ],
488
490
sources = [srcpath ('_packer' ,
489
491
suffix = suffix if suffix == '.pyx' else '.cpp' ,
490
492
subdir = 'msgpack' )],
491
493
language = 'c++' ,
492
494
include_dirs = ['pandas/src/msgpack' ] + common_include ,
493
495
define_macros = macros )
494
496
unpacker_ext = Extension ('pandas.msgpack._unpacker' ,
497
+ depends = ['pandas/src/msgpack/unpack.h' ,
498
+ 'pandas/src/msgpack/unpack_define.h' ,
499
+ 'pandas/src/msgpack/unpack_template.h' ],
495
500
sources = [srcpath ('_unpacker' ,
496
501
suffix = suffix if suffix == '.pyx' else '.cpp' ,
497
502
subdir = 'msgpack' )],
You can’t perform that action at this time.
0 commit comments