noamraph / tqdm

Add a progress meter to your loops in a second
MIT License
2.78k stars 101 forks source link

do my wheel ! #15

Open stonebig opened 9 years ago

stonebig commented 9 years ago

python setup.py sdist bdist_wheel

JackMc commented 9 years ago

Don't mean to be ignorant, but what does this do?

stonebig commented 9 years ago

It's for building a "pure-wheel" python distribution.

If all packages I used are "wheel" , then I can build winpython by pointing all dependancies resolution to a local directory.

Today I can't, because an update from pypi can create unpredictable results. ==> so missing dependancies are discovered per users.

Tomorrow, if all packages used are wheels, I'll be able to let the build process check and resolve dependancies on the 'controled' set of wheels, and raise an issue if I missed one.

stonebig commented 9 years ago

As a workaround, I downloaded tdqm from pip and did a manual tweak on setup.py , and then

python setup.py sdist bdist_wheel --universal