Skip to content

Commit

Permalink
Include dbm.dumb for windows build (#490)
Browse files Browse the repository at this point in the history
cx_Freeze was only including dbm.ndbm which is not available on windows.
This should fix #474
  • Loading branch information
arsenetar authored and Virgil Dupras committed Feb 26, 2018
1 parent f349f6a commit 6c6271b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def package_windows():
'build_exe': {
'build_exe': buildpath,
'excludes': [],
'includes': ['atexit'],
'includes': ['atexit', 'dbm.dumb'],
'include_files': include_files,
'include_msvcr': True,
'zip_include_packages': ['*'],
Expand Down

0 comments on commit 6c6271b

Please sign in to comment.