Skip to content

Commit 9d0b5f8

Browse files
committed
BLD: add in msgpack .h deps
1 parent 5b6869b commit 9d0b5f8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

+5
Original file line numberDiff line numberDiff line change
@@ -485,13 +485,18 @@ def pxd(name):
485485
macros = [('__LITTLE_ENDIAN__', '1')]
486486

487487
packer_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)
494496
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'],
495500
sources = [srcpath('_unpacker',
496501
suffix=suffix if suffix == '.pyx' else '.cpp',
497502
subdir='msgpack')],

0 commit comments

Comments
 (0)