Re: [Distutils] OS X and PEP 425 / wheels

2014-03-07 Thread Paul Moore
On 7 March 2014 01:26, Daniel Holth dho...@gmail.com wrote: The pep425 design tries to avoid assigning any ordering to the tag components. For the py version we just add py27, py26, py25 for example to the list of accepted tags. Perhaps the same strategy works for osx. So the osx 10.9

Re: [Distutils] OS X and PEP 425 / wheels

2014-03-07 Thread Nick Coghlan
___ Distutils-SIG maillist - Distutils-SIG@python.org https://mail.python.org/mailman/listinfo/distutils-sig

Re: [Distutils] OS X and PEP 425 / wheels

2014-03-07 Thread Brian Wickman
I've also run into similar issues. What I do with PEX is fudge PEP425 tags for OS X in order to be more correct: https://github.com/wickman/commons/blob/wickman/pep425/src/python/twitter/common/python/pep425.py The current version on master (not wheel-aware) does it slightly differently for

Re: [Distutils] OS X and PEP 425 / wheels

2014-03-07 Thread Chris Barker
On Fri, Mar 7, 2014 at 9:50 AM, Brian Wickman wick...@gmail.com wrote: I've also run into similar issues. What I do with PEX is fudge PEP425 tags for OS X in order to be more correct: https://github.com/wickman/commons/blob/wickman/pep425/src/python/twitter/common/python/pep425.py I'd

Re: [Distutils] OS X and PEP 425 / wheels

2014-03-07 Thread Nick Coghlan
On 8 March 2014 05:53, Chris Barker chris.bar...@noaa.gov wrote: +1 This looks good to me. In theory, this logic should really go with python itself, not a third-party lib. i.e., once built, a Python implementation will match particular tags -- having a third party lib keep track of that

[Distutils] OS X and PEP 425 / wheels

2014-03-06 Thread MinRK
Hello, I proposed a patch https://github.com/pypa/pip/pull/1465 to pip, with respect to treatment of the platform tag on OS X, and Chris Barker proposed that I bring the discussion here. The situation: PEP 425 describes the platform tag as: The platform tag is simply

Re: [Distutils] OS X and PEP 425 / wheels

2014-03-06 Thread Ned Deily
In article cahnn8bw+ufqrfqsuszq81whm+xtheb-rp-d9na0tkttgjph...@mail.gmail.com, MinRK benjami...@gmail.com wrote: I proposed a patch https://github.com/pypa/pip/pull/1465 to pip, with respect to treatment of the platform tag on OS X, and Chris Barker proposed that I bring the discussion here.

Re: [Distutils] OS X and PEP 425 / wheels

2014-03-06 Thread Chris Barker
On Thu, Mar 6, 2014 at 4:27 PM, MinRK benjami...@gmail.com wrote: I proposed a patch https://github.com/pypa/pip/pull/1465 to pip, with respect to treatment of the platform tag on OS X, and Chris Barker proposed that I bring the discussion here. Note -- there is some more discusion on that