This release supports using "spawn" method of multiprocessing and makes all background processes pickable.
Example:
python
import multiprocessing as mp
from rmount import RemoteMount
if __name__ == "__main__":
mp.set_start_method("spawn", force=True)
mount = RemoteMount(config, remote_path, local_path)
**Full Changelog**: https://github.com/fostiropoulos/rmount/compare/v0.0.4...v0.0.5