We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If one calls python setup.py build the directory ffi/build is created. python setup.py clean --all does not remove it however.
python setup.py build
ffi/build
python setup.py clean --all
This is a problem because stale builds can persist. For example pip install . fails because of this if python setup.py build was previously executed.
pip install .
Activity