From 2da4eb58989af1fc0280f5fec12deca2aa6eae88 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Fri, 8 Jun 2018 14:31:06 +0200 Subject: [PATCH] [FIX] packaging: add BeautifulSoup to py2exe setup When trying to import an OFX bank statetement under MS Windows, a Traceback states that BeautifulSoup is missing. During the build process, py2exe didn't autodiscover that BeautifulSoup is needed by the ofxparse package. With this commit, BeautifulSoup is explicitely added to py2exe packages. The Nightly VM was updated accordingly. opw-1848202 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1b63d36bd5a12..b040cfc8854ac 100644 --- a/setup.py +++ b/setup.py @@ -70,6 +70,7 @@ def py2exe_options(): 'dist_dir': 'dist', 'packages': [ 'asynchat', 'asyncore', + 'BeautifulSoup', 'commands', 'dateutil', 'decimal',