Re: [Distutils] draft PEP: manylinux2

2018-02-06 Thread Nick Coghlan
On 6 February 2018 at 17:55, Nick Coghlan wrote: > On 6 February 2018 at 16:05, Mark Williams wrote: >> If I may, a quick question about procedure: do I continue to included >> updates to the PEP in my responses here? Or do I link to my branch on >> GitHub? > > Ah, thanks for the reminder - I'll

Re: [Distutils] draft PEP: manylinux2

2018-02-06 Thread Joni Orponen
On Mon, Feb 5, 2018 at 10:01 PM, Nick Coghlan wrote: > On 6 February 2018 at 00:35, Joni Orponen wrote: > > On Mon, Feb 5, 2018 at 2:51 PM, Nick Coghlan wrote: > >> > >> As an illustrative example, manylinux1 was essentially manylinux2007, > >> and it's now running into problems precisely becau

[Distutils] Building a Python package build service for warehouse

2018-02-06 Thread Jannis Gebauer
Hi! I’m currently working on a package build server. My goal is to produce useful additional meta data for all packages available on PyPi. This includes: - Transitive dependencies - Is the package installable under Python 3? - Various automated “code quality” tests like pylint, pyflakes, pep8,

Re: [Distutils] Building a Python package build service for warehouse

2018-02-06 Thread Alex Grönholm
I'd be all for it if I wasn't buried under a ton of other things to do. Happy hacking and good luck! Jannis Gebauer kirjoitti 06.02.2018 klo 10:33: Hi! I’m currently working on a package build server. My goal is to produce useful additional meta data for all packages available on PyPi. Thi

Re: [Distutils] draft PEP: manylinux2

2018-02-06 Thread Janzert
On 2/5/2018 16:01, Nick Coghlan wrote: Compare: - manylinux1 vs manylinux2 vs manylinux3 - manylinux2007 vs manylinux2010 vs manylinux2014 I'll leave this just as a data point (anecdote) from someone that isn't heavily involved with linux sysadmin or python packaging. Feel free to make of i

[Distutils] Fwd: Warehouse update: still on track, new features

2018-02-06 Thread Sumana Harihareswara
Our weekly Warehouse update just went out to pypa-dev and is included below. Forwarded Message Subject: Warehouse update: still on track, new features Date: Tue, 6 Feb 2018 22:09:12 -0500 From: Sumana Harihareswara To: pypa-dev Here's your weekly update on Warehouse, powering

Re: [Distutils] draft PEP: manylinux2

2018-02-06 Thread Alex Walters
-Original Message- From: Alex Walters [mailto:tritium-l...@sdamon.com] Sent: Wednesday, February 7, 2018 12:21 AM To: 'Janzert' Subject: RE: [Distutils] draft PEP: manylinux2 > -Original Message- > From: Distutils-SIG [mailto:distutils-sig-bounces+tritium- > list=sdamon@pyt

[Distutils] Moving PEP 541 (PyPI's name management policy) forward

2018-02-06 Thread Nick Coghlan
Hi folks, As Sumana mentioned in her latest summary email, we've been looking at PEP 541 again, and figuring out how best to manage the process for getting that approved so that the folks handling name management requests can start relying on it. The key challenge with it has been the fact that t

Re: [Distutils] draft PEP: manylinux2

2018-02-06 Thread Nick Coghlan
On 7 February 2018 at 15:21, Alex Walters wrote: > This is a really good point. Since pip is the main interface to packages > for end users anyways, we can call it manylinux8675309 and it wouldn't > really matter to users - the name only really matters to package > maintainers, not users. And be

Re: [Distutils] Building a Python package build service for warehouse

2018-02-06 Thread Nick Coghlan
On 6 February 2018 at 19:33, Jannis Gebauer wrote: > The main idea is to run the build process in a restricted “sandbox” docker > container that pulls the package from PyPi, installs it and runs a couple of > tools on it. Code is still pretty rough, nothing to look at at the moment > I’m afraid.