Fix multiprocessing start method
[0.6.6] - 2022-07-05
Fixed
start_method
for multiprocessing now defaults to using"fork"
for linux and macOS systems, which means that users no longer need to wrap the code inif __name__ == "__main__"
guards unless they are on Windows.