Closed stonebig closed 9 years ago
Ok. Do you mean that you need that I upload a wheel package in PyPI? Can I upload both (.zip and wheel) or is it an issue somehow?
You shall do both, as I think it's the best practice. By default, pip select the wheel when available (from your os/python version, ...)
When there is no compiled code (but compiled sphinx documentation for example), it's:
python setup.py sdist bdist_wheel --universal
twine upload dist/*
Done!
thanks !
I whish a wheel, otherwise pip will try to compile it into a wheel without keeping the order in the requirement.txt file, and fail because numpy is not yet installed. and so I need 2 requirements files