Closed bcroq closed 6 years ago
--workers auto uses os.cpu_count() which is in Python 3.4 or newer, whereas multiprocessing.cpu_count() is in Python 2.6 or newer.
--workers auto
os.cpu_count()
multiprocessing.cpu_count()
I currently only support Python 3.6+ and don't currently have plans to support anything less. Feel free to vote on #4 though!
--workers auto
usesos.cpu_count()
which is in Python 3.4 or newer, whereasmultiprocessing.cpu_count()
is in Python 2.6 or newer.