I'm automatically building wheels for each tagged release using github URL. These wheels are then uploaded to a wheelhouse.
Command I'm using is
pip wheel --wheel-dir=/tmp/wheels/ \
--find-links=http://wheelhouse/index.html \
git+ssh://git@github.com/company/project.git@1.2.3
/tmp/wheels/
is initially empty.
This rebuilds, even if the wheel for the release 1.2.3
of the project
is already in the remote wheelhouse. Short of downloading all the wheels from the wheelhouse into local wheel dir, is there any other way of preventing unnecessary rebuilding?