From 841a665374a30aba967aba1660421689651277dc Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 21 Feb 2017 14:26:45 -0800 Subject: [PATCH] Remove jinja2.asyncsupport from PyInstaller, because it's not used and causes a crash during building --- install/pyinstaller.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/pyinstaller.spec b/install/pyinstaller.spec index ffff330c..3c5c19bf 100644 --- a/install/pyinstaller.spec +++ b/install/pyinstaller.spec @@ -20,7 +20,7 @@ a = Analysis( hiddenimports=[], hookspath=[], runtime_hooks=[], - excludes=[], + excludes=['jinja2.asyncsupport'], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=None)