From a1fe249f5ebc8bb26a3e8d6ff34753bce7b69f95 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Tue, 4 May 2021 11:15:39 +0200 Subject: [PATCH] Bundle required windows shared libraries --- python/ci/build.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/python/ci/build.py b/python/ci/build.py index 342f3ad..12630b3 100755 --- a/python/ci/build.py +++ b/python/ci/build.py @@ -22,7 +22,13 @@ if __name__ == "__main__": for path in Path("vendor").glob("*/bin"): env["PATH"] += f"{pathsep}{path}" - shared_libraries = [] + shared_libraries = [ + "zlib1", + "bz2", + "libpng16", + "brotlidec", + "brotlicommon", + ] elif system() == "Linux": shared_libraries = [ "gmpxx.so.4", -- GitLab