You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make embarrassingly parallelizable builds build in parallel. This means that for each level in the dependency graph, all nodes at this level should be built in parallel.
So, if a package is for some reason not possible to build in parallel with other packages, it can get build_isolation—which currently means that it is built not in parallel with other packages.
The text was updated successfully, but these errors were encountered:
Make embarrassingly parallelizable builds build in parallel. This means that for each level in the dependency graph, all nodes at this level should be built in parallel.
This means that if the graph looks like this:
three batches of build will occur:
python
setuptools
andwheel
contextlib2
,cachetools
and thenenum34
etc.
If, for any reason, some build is not parallelizable, it should be explicitly marked as such in
repository.yml
.So, if a package is for some reason not possible to build in parallel with other packages, it can get
build_isolation
—which currently means that it is built not in parallel with other packages.The text was updated successfully, but these errors were encountered: