diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 383e6121..8b5a2803 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 4, 3) +VERSION = (1, 4, 4) CODENAME = "mostly reliable" -BUILD_DT = (2022, 9, 26) +BUILD_DT = (2022, 10, 9) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/scripts/pyinstaller/build.sh b/scripts/pyinstaller/build.sh index 4871effd..409d341c 100644 --- a/scripts/pyinstaller/build.sh +++ b/scripts/pyinstaller/build.sh @@ -47,6 +47,7 @@ $APPDATA/python/python37/scripts/pyinstaller \ --exclude-module copyparty.broker_mpw \ --exclude-module curses \ --exclude-module ctypes.macholib \ + --exclude-module inspect \ --exclude-module multiprocessing \ --exclude-module pdb \ --exclude-module pickle \