File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -129,3 +129,4 @@ Reshaping
129129Other
130130
131131- Tab completion on :class:`Index` in IPython no longer outputs deprecation warnings (:issue:`21125`)
132+ - Bug preventing pandas being used on Windows without C++ redistributable installed (:issue:`21106`)
Original file line number Diff line number Diff line change @@ -453,10 +453,10 @@ def pxd(name):
453453 return pjoin ('pandas' , name + '.pxd' )
454454
455455
456- # args to ignore warnings
457456if is_platform_windows ():
458457 extra_compile_args = []
459458else :
459+ # args to ignore warnings
460460 extra_compile_args = ['-Wno-unused-function' ]
461461
462462lib_depends = lib_depends + ['pandas/_libs/src/numpy_helper.h' ,
@@ -733,7 +733,7 @@ def pxd(name):
733733 maintainer = AUTHOR ,
734734 version = versioneer .get_version (),
735735 packages = find_packages (include = ['pandas' , 'pandas.*' ]),
736- package_data = {'' : ['data/*' , 'templates/*' ],
736+ package_data = {'' : ['data/*' , 'templates/*' , '_libs/*.dll' ],
737737 'pandas.tests.io' : ['data/legacy_hdf/*.h5' ,
738738 'data/legacy_pickle/*/*.pickle' ,
739739 'data/legacy_msgpack/*/*.msgpack' ,
You can’t perform that action at this time.
0 commit comments