On Tue, Jun 21, 2016 at 12:46 PM, Nathaniel Smith <njs@pobox.com> wrote:
It's keyed off the version number -- sdists or wheels whose version number contains alpha/beta/rc/dev tags are skipped by pip by default, unless --pre was passed.
-n
On Jun 21, 2016 12:39 PM, "Evgeni Burovski" <evgeny.burovskiy@gmail.com> wrote:
<snip>
Would it make sense to put these wheels on PyPI, so people can test them with ``pip install scipy --pre``? We do that with Numpy wheels as well now.
We don't have built manylinux wheels for Python 3 because of the test failures, but the incantation to upload the wheels that are built is (I think): git clone https://github.com/MacPython/terryfy.git python terryfy/wheel-uploader -r warehouse -v -s -t manylinux1 scipy 0.18.0rc1 python terryfy/wheel-uploader -r warehouse -v -s -t macosx scipy 0.18.0rc1 You'll also need a 'warehouse' section in your ~/.pypirc, as in: [distutils] index-servers = pypi warehouse [pypi] username: my_user password: my_password [warehouse] repository: https://upload.pypi.io/legacy/ username: my_warehouse_user password: my_warehouse_password and installations of "twine" and "beautifulsoup4". Cheers, Matthew