From 8f1c96823e1d39a35a040081266a17cb9b0fec64 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 5 May 2020 11:47:48 +0100 Subject: [PATCH] BLD: recursive inclusion of DLLs in package data (#33246) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c33ce063cb4d9..e29f6fcd31bc8 100755 --- a/setup.py +++ b/setup.py @@ -753,7 +753,7 @@ def srcpath(name=None, suffix=".pyx", subdir="src"): maintainer=AUTHOR, version=versioneer.get_version(), packages=find_packages(include=["pandas", "pandas.*"]), - package_data={"": ["templates/*", "_libs/*.dll"]}, + package_data={"": ["templates/*", "_libs/**/*.dll"]}, ext_modules=maybe_cythonize(extensions, compiler_directives=directives), maintainer_email=EMAIL, description=DESCRIPTION,