[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Bert JW Regeer
The nice thing with the new macaroons is that theoretically I can provide someone my key to upload packages on my behalf for a singular PyPI project. This way I could allow a third-party service to backfill binary wheels for other platforms once I've released a version to PyPI. Bert > On Aug

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Wes Turner
FWIW, conda supports the e.g. armv7l aarch32 and armv8 aarch64 / "ARM64" platforms. Third-party-built packages are the norm there; where there are channels like conda-forge and rpi. What does it mean to sign a CI build from a given unsigned git tag? "Build conda packages for ARM"

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Tzu-ping Chung
> On 20 Aug 2019, at 23:47, Nick Timkovich wrote: > >> On Tue, Aug 20, 2019, at 5:05 AM Matthew Brett >> wrote: > >> ... Unless you meant wheels for non-Intel platforms, in which case, please >> do say more about you need. > > Minor tangent: I've seen some people use

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Nick Timkovich
On Tue, Aug 20, 2019, at 5:05 AM Matthew Brett wrote: > ... Unless you meant wheels for non-Intel platforms, in which case, > please do say more about you need. Minor tangent: I've seen some people use https://www.piwheels.org/ for Raspberry Pi (ARM 6/7), but could the ARM binaries be

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Thomas Kluyver
On Tue, Aug 20, 2019, at 3:50 PM, Brian Skinn wrote: > I wonder if there's an OS dependence here, though -- I'm almost certain I've > had to use `--only-binary` in the past, to avoid pip on my Windows machines > trying to download and build sdists, even when wheels were available. Possibly you

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Paul Moore
On Tue, 20 Aug 2019 at 14:50, Brian Skinn wrote: > I wonder if there's an OS dependence here, though -- I'm almost certain I've > had to use `--only-binary` in the past, to avoid pip on my Windows machines > trying to download and build sdists, even when wheels were available. Pip prefers

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Brian Skinn
On Tue, Aug 20, 2019 at 6:14 AM Matthew Brett wrote: > Hi, > > On Tue, Aug 20, 2019 at 11:10 AM Brian Skinn > wrote: > > > > > > > > On Tue, Aug 20, 2019, 06:05 Matthew Brett > wrote: > >> > >> Hi, > > > > > >> See the links that Wes posted for more details, or try pip installing > >> Numpy

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Matthew Brett
Hi, On Tue, Aug 20, 2019 at 11:10 AM Brian Skinn wrote: > > > > On Tue, Aug 20, 2019, 06:05 Matthew Brett wrote: >> >> Hi, > > >> See the links that Wes posted for more details, or try pip installing >> Numpy and Scipy in a new virtualenv, and see what happens. > > > Probably needs to: > >

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Brian Skinn
On Tue, Aug 20, 2019, 06:05 Matthew Brett wrote: > Hi, > See the links that Wes posted for more details, or try pip installing > Numpy and Scipy in a new virtualenv, and see what happens. > Probably needs to: pip install --only-binary :all: numpy scipy Else it'll just build from source?

[Distutils] Re: Linux binary wheels?

2019-08-20 Thread Matthew Brett
Hi, On Tue, Aug 20, 2019 at 1:23 AM Dan Stromberg wrote: > > Hi folks. > I have a pair of ideas about Linux binary wheels, which are currently (I > heard) unsupported. Your information is wrong, I'm afraid - Manylinux wheels have been standard, and widely used, for several years now. Unless