From f63129107e47bb64f593ef810a2c0342c11fe579 Mon Sep 17 00:00:00 2001 From: shadeofblue Date: Tue, 4 Jun 2019 15:07:55 +0200 Subject: [PATCH] hopefully fix the windows build... (#4273) --- scripts/pyinstaller/hooks/hook-eventlet.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts/pyinstaller/hooks/hook-eventlet.py diff --git a/scripts/pyinstaller/hooks/hook-eventlet.py b/scripts/pyinstaller/hooks/hook-eventlet.py new file mode 100644 index 0000000000..eb4fd6e6dc --- /dev/null +++ b/scripts/pyinstaller/hooks/hook-eventlet.py @@ -0,0 +1,3 @@ +from PyInstaller.utils.hooks import collect_submodules + +hiddenimports = collect_submodules('eventlet')