Since switching to OrderedDict, package metadata can no longer be pickled.
This can cause problems if you try to use setuptools with multiprocessing.
Traceback (most recent call last):
File "/Users/dan/Documents/colcon_ws/src/colcon-python-setup-py/colcon_python_setup_py/package_identification/python_setup_py.py", line 257, in get_setup_information
'stop_after': 'config'
File "/usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/pool.py", line 261, in apply
return self.apply_async(func, args, kwds).get()
File "/usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/pool.py", line 657, in get
raise self._value
multiprocessing.pool.MaybeEncodingError: Error sending result: '<distutils.dist.DistributionMetadata object at 0x10c1fcd50>'. Reason: 'PicklingError("Can't pickle <class 'setuptools._vendor.ordered_set.OrderedSet'>: it's not the same object as setuptools._vendor.ordered_set.OrderedSet")'
Originally posted by @rotu in #1690 (comment)
Since switching to OrderedDict, package metadata can no longer be pickled.
This can cause problems if you try to use setuptools with multiprocessing.
Originally posted by @rotu in #1690 (comment)