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):
485485 macros = [('__LITTLE_ENDIAN__' , '1' )]
486486
487487packer_ext = Extension ('pandas.msgpack._packer' ,
488+ depends = ['pandas/src/msgpack/pack.h' ,
489+ 'pandas/src/msgpack/pack_template.h' ],
488490 sources = [srcpath ('_packer' ,
489491 suffix = suffix if suffix == '.pyx' else '.cpp' ,
490492 subdir = 'msgpack' )],
491493 language = 'c++' ,
492494 include_dirs = ['pandas/src/msgpack' ] + common_include ,
493495 define_macros = macros )
494496unpacker_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' ],
495500 sources = [srcpath ('_unpacker' ,
496501 suffix = suffix if suffix == '.pyx' else '.cpp' ,
497502 subdir = 'msgpack' )],
You can’t perform that action at this time.
0 commit comments