From 2164d1ee99e48a3aa9d9ebdc3fb074ae94f5a939 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Sun, 25 Feb 2018 16:14:55 -0600 Subject: [PATCH] Include dbm.dumb for windows build 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': ['*'],