Breaking Changes
pip install loxnow installs athread-only version of Lox with zero dependencies.pip install lox[multiprocessing]now installs the "full" version that usespathosto handle multiprocessing. This is the equivalent of the previouspip install lox.
Many consumers of lox are only using the @lox.thread decorator and do not need the heavy pathos dependency. Unfortunately, due to how setuptools works, we were unable to make the dependency-less version an "extras". I.e. there's no way of doing pip install lox[slim]; "extras" can only add dependencies, they cannot remove dependencies.
Full Changelog: v0.13.0...v1.0.0