Pytrotch cibuildwheel .travys.yml auto deployment

Is there a good way to run autodeployment to pip using travis? I expected to see it in torchvision, but I didn’t see it.

I’m currently trying to use cibuildwheel, but manylinux doesn’t have apt or wget, so the miniconda setup from torchvision needs some tweaks.

Got it!

For anyone trying to auto-create pip packages with cibuilwheel and pytorch, add:

env: CIBW_SKIP='*-win32 *-manylinux1_i686'

to your .travis.yml file.

There aren’t any recent pytorch packages for 32 bit operating systems, which makes sense since they’re old and probably don’t have much demand for optimization.

Here’s a working .travis.yml file: