-
A project I am working on is considering using PEP-517. We also currently use The explanation is that after downloading an sdist, It appears that in numpy+setuptools case, this call is inefficient and might involve building entire wheel. Do we have an issue in setuptools' implementation of If it is a Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
pip's verbose mode provides clues as to what is happening. If you run:
we'll see that most of the time is spent on getting project's build dependencies.
and, since pip command says The actual metadata generation takes a ~second or less and happens here:
|
Beta Was this translation helpful? Give feedback.
pip's verbose mode provides clues as to what is happening. If you run:
we'll see that most of the time is spent on getting project's build dependencies.