Skip to content

Commit

Permalink
[FIX] packaging: add BeautifulSoup to py2exe setup
Browse files Browse the repository at this point in the history
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
  • Loading branch information
d-fence committed Jun 8, 2018
1 parent 867bbff commit 2da4eb5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def py2exe_options():
'dist_dir': 'dist',
'packages': [
'asynchat', 'asyncore',
'BeautifulSoup',
'commands',
'dateutil',
'decimal',
Expand Down

0 comments on commit 2da4eb5

Please sign in to comment.