add freeze_support to pyinstaller entry script (#162)

* fix: add freeze_support to pyinstaller entryscript

* docs: update CHANGELOG.md
This commit is contained in:
mkb79 2023-11-08 22:08:25 +01:00 committed by GitHub
parent 275a2b2b77
commit 72b4ff916f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View file

@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Update marketplace choices in `manage auth-file add` command. Now all available marketplaces are listed.
### Misc
- add `freeze_support` to pyinstaller entry script (#78)
## [0.2.5] - 2022-09-26
### Added

View file

@ -1,4 +1,9 @@
from audible_cli import cli
import multiprocessing
cli.main()
multiprocessing.freeze_support()
if __name__ == '__main__':
from audible_cli import cli
cli.main()