From 6c6271bc69a1fd927b8d892e6b3ec1b404f285b1 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Mon, 26 Feb 2018 08:42:14 -0600 Subject: [PATCH] Include dbm.dumb for windows build (#490) cx_Freeze was only including dbm.ndbm which is not available on windows. This should fix hsoft/dupeguru#474 --- package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.py b/package.py index cca98b12..fa4de958 100644 --- a/package.py +++ b/package.py @@ -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': ['*'],