diff --git a/app/pilotcli.py b/app/pilotcli.py index 8d882d8e..a2a25f12 100644 --- a/app/pilotcli.py +++ b/app/pilotcli.py @@ -2,6 +2,8 @@ # # Contact Indoc Systems for any questions regarding the use of this source code. +from multiprocessing import freeze_support + import click import requests @@ -38,4 +40,5 @@ def cli(): if __name__ == '__main__': + freeze_support() # Add support for multiprocessing after bundling with PyInstaller cli() diff --git a/pyproject.toml b/pyproject.toml index 73b9a7cf..d373d752 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "app" -version = "2.8.3" +version = "2.8.4" description = "This service is designed to support pilot platform" authors = ["Indoc Systems"]