Skip to content

Commit 833ddce

Browse files
committed
Fix missing mysql-vendor folder in wheel packages
1 parent d3a35ae commit 833ddce

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/cpy_distutils.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,10 +431,7 @@ def _copy_vendor_libraries(self):
431431
log.info("copying {0} -> {1}".format(src, dst))
432432
shutil.copy(src, dst)
433433
# Add data_files to distribution
434-
self.distribution.data_files = [(
435-
os.path.join(get_python_lib(1), vendor_folder),
436-
data_files
437-
)]
434+
self.distribution.data_files = [(vendor_folder, data_files)]
438435

439436
def _finalize_connector_c(self, connc_loc):
440437
"""Finalize the --with-connector-c command line argument

0 commit comments

Comments
 (0)