Re: [Pythonmac-SIG] Upgrade to pip 9.0.3 (due to TLS deprecation)

2018-04-06 Thread Matthew Brett
Hi, On Fri, Apr 6, 2018 at 7:02 PM, Sumana Harihareswara wrote: > Matthew, > > Thank you for your detailed explanations and thoughts here and in > https://groups.google.com/forum/m/#!topic/pypa-dev/Oz6SGA7gefo . > > I am not a Mac user and am fairly new to the Python packaging/distribution > wor

Re: [Pythonmac-SIG] Upgrade to pip 9.0.3 (due to TLS deprecation)

2018-04-06 Thread Matthew Brett
Hi, On Fri, Apr 6, 2018 at 6:06 PM, Chris Jerdonek wrote: > > On Fri, Apr 6, 2018 at 6:25 AM Matthew Brett > wrote: >> >> Hi, >> >> On Mon, Apr 2, 2018 at 9:36 PM, Sumana Harihareswara >> wrote: >> > Mac users: >> > >> >

Re: [Pythonmac-SIG] Upgrade to pip 9.0.3 (due to TLS deprecation)

2018-04-06 Thread Matthew Brett
Hi, On Fri, Apr 6, 2018 at 2:32 PM, Sumana Harihareswara wrote: > Sorry to be terse - I am attending to some family stuff for the next few days. > > Thanks for the report. You may be right - what happens when you use the -v > option(s) to make the error message(s) show up? I think -vvv might do

Re: [Pythonmac-SIG] Upgrade to pip 9.0.3 (due to TLS deprecation)

2018-04-06 Thread Matthew Brett
Hi, On Mon, Apr 2, 2018 at 9:36 PM, Sumana Harihareswara wrote: > Mac users: > > If you are running macOS/OS X version 10.12 or older, you need to > upgrade to the latest pip (9.0.3) to connect to the Python Package Index > securely: > > curl https://bootstrap.pypa.io/get-pip.py | python > >

Re: [Pythonmac-SIG] Delete load command (install name) from dylib?

2016-07-02 Thread Matthew Brett
On Sat, Jul 2, 2016 at 12:27 PM, Ronald Oussoren wrote: > Fixing the VTK build would be the best way to fix this issue, but from my > rather hazy memory building it might not be easy. If they'd use distutils > for building life would be much easier here, and IIRC python-config also > returns t

Re: [Pythonmac-SIG] Delete load command (install name) from dylib?

2016-07-02 Thread Matthew Brett
bit.dmg [4] https://gitlab.kitware.com/vtk/vtk/merge_requests/1511 [5] https://docs.google.com/document/d/1e46rbbedffiQLHSRWwjuO9tbscOM9fXhWarL8eNhG5o/edit# [6] https://gist.github.com/matthew-brett/2907cdb31a042c7a737902b719f4deb8 ___ Pythonmac-SIG maillist -

[Pythonmac-SIG] Delete load command (install name) from dylib?

2016-07-01 Thread Matthew Brett
Hi, I'm sorry if this is an easy question to which I have missed an obvious answer, but Is there any way (using macholib or otherwise) to delete a library dependency? Specifically, let's say I have a library with dependencies like this: $ otool -L libdlib.19.0.99.dylib libdlib.19.0.99.dylib: /

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-24 Thread Matthew Brett
Hi, On Fri, Sep 19, 2014 at 12:20 PM, Aaron Meurer wrote: > On Fri, Sep 19, 2014 at 11:03 AM, Matthew Brett > wrote: >> Hi, >> >> On 9/18/14, Ned Deily wrote: >>> In article >>> , >>> Matthew Brett wrote: >>>> I'

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-24 Thread Matthew Brett
Oops, On Tue, Sep 23, 2014 at 1:50 PM, Matthew Brett wrote: > Hi, > > On Mon, Sep 22, 2014 at 10:46 AM, Charlie Clark > wrote: >> Am .09.2014, 16:42 Uhr, schrieb Matthew Brett : >> >>> So just to be clear, the difference here is between the instlal you got >

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-23 Thread Matthew Brett
Hi, On Mon, Sep 22, 2014 at 10:46 AM, Charlie Clark wrote: > Am .09.2014, 16:42 Uhr, schrieb Matthew Brett : > >> So just to be clear, the difference here is between the instlal you got >> for: >> pip install your-package > > >> where `your-package` was

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-22 Thread Matthew Brett
Hi, On 9/22/14, Charlie Clark wrote: > Am .09.2014, 16:24 Uhr, schrieb Matthew Brett : > >> Sorry to be dumb, but I don't understand. Do you mean that you built >> a source tarball of your own package and you tried to modify the >> dependencies of other pack

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-22 Thread Matthew Brett
Hi, On 9/22/14, Charlie Clark wrote: > Am .09.2014, 16:10 Uhr, schrieb Matthew Brett : > >> Sure, but that is a lot of setup for one morning of installs. The >> benefit of the point-click installer is that the student can download >> everything they need in their own t

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-22 Thread Matthew Brett
Hi, On 9/22/14, Charlie Clark wrote: > Am .09.2014, 15:37 Uhr, schrieb Matthew Brett : > >> Yes - if you don't have much they need to install, then you can easily >> do it with pip in the class - otherwise the time and bandwidth can be >> limiting. > > A local

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-22 Thread Matthew Brett
Hi, On 9/19/14, Christopher Barker wrote: > On Fri, Sep 19, 2014 at 9:03 AM, Matthew Brett > wrote: > >> The primary use case is for getting started with a basic package >> setup. I am thinking of my own courses ("download this, double >> click,, let's

Re: [Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-19 Thread Matthew Brett
Hi, On 9/18/14, Ned Deily wrote: > In article > , > Matthew Brett wrote: >> I'd very much like your feedback on a utility I've written to make OSX >> installers from wheels. >> >> For my own course, and for matplotlib, I wanted to make an double clic

[Pythonmac-SIG] Package for building DMG installers from pip requirements

2014-09-18 Thread Matthew Brett
l thinking on this from Min Ragan-Kelly of IPython fame. I've written an package that automates building the installer: https://github.com/matthew-brett/wheels2dmg There are some examples in the README, but the basic idea is: wheels2dmg scipy-stack 1.0 scipy matplotlib i

Re: [Pythonmac-SIG] MacPython and automating wheel builds

2014-08-06 Thread Matthew Brett
On Mon, Aug 04, 2014 at 09:05 AM, Chris Barker wrote: > from: Chris Barker > date: Mon, Aug 04 09:05 AM -07:00 2014 > to: Matthew Brett > cc: Pythonmac-Sig , Olivier Grisel > > subject: Re: [Pythonmac-SIG] MacPython and automating wheel builds > > Matthew, > >

[Pythonmac-SIG] New page on wiki about system Python

2014-08-02 Thread Matthew Brett
Hi, I just put up a new wiki page on why system Python can be incovenient to use: https://github.com/MacPython/wiki/wiki/Which-Python I'd be very happy for feedback as to whether this is still the standard advice, Cheers, Matthew -- Sent from Vmail_

[Pythonmac-SIG] MacPython and automating wheel builds

2014-08-02 Thread Matthew Brett
l point for advice and help on building OSX wheels. Thanks for any feedback, Matthew [1] https://github.com/matplotlib/mpl_mac_testing [2] https://github.com/matthew-brett/terryfy [3] https://github.com/matthew-brett/h5py-wheels [4] https://travis-ci.org/matthew-brett/h5py-wheels [5] https://githu

Re: [Pythonmac-SIG] Building compatible dependencies

2014-06-11 Thread Matthew Brett
Hi, On Wed, Jun 11, 2014 at 4:58 PM, Chris Barker wrote: > Hi folks, > > I know it'a at least theoretically possible to build libs under 10.9 that > will work on 10.6 -- specifically compatible with the python.org python > binaries. > > But I"m having trouble finding documentation of what flags y

Re: [Pythonmac-SIG] Wiki, and page on OSX wheels

2014-04-11 Thread Matthew Brett
Hi, On Wed, Apr 9, 2014 at 8:56 AM, Christopher Barker wrote: > > On Tuesday, April 8, 2014, Matthew Brett wrote: >> >> >> $ pip install ipython >> > ... >> >> >> Successfully installed ipython gnureadline >> > Very nice! > >

Re: [Pythonmac-SIG] Wiki, and page on OSX wheels

2014-04-08 Thread Matthew Brett
Hi, On Tue, Apr 8, 2014 at 4:06 PM, Christopher Barker wrote: > Mathew, > > This is great, thanks! > > I can't remember what the hold-up is with iPython -- I think it was the > some-time require readline issue? But I thought that that was semi-resolved > -- any idea what the deal is with that? I

[Pythonmac-SIG] Wiki, and page on OSX wheels

2014-04-08 Thread Matthew Brett
Hi, I set up a Github wiki for MacPython: https://github.com/MacPython/wiki/wiki I also wrote a page on the current status of OSX binary wheels: https://github.com/MacPython/wiki/wiki/Spinning-wheels Thanks to Chris Barker for setting up the MacPython github organization. Any comments very we

[Pythonmac-SIG] Utility to copy dynamic libs into OSX wheels

2014-03-25 Thread Matthew Brett
Hi, I just released a first very alpha version of a utility called 'delocate'. It analyzes code in a wheel for any missing dynamic libraries, and copies these into the wheel: https://pypi.python.org/pypi/delocate For example, something like: delocate-wheel scipy-0.14.0b1-cp34-cp34m-macosx

[Pythonmac-SIG] New release of bdist_mpkg

2013-08-23 Thread Matthew Brett
Hi, I just did a new release of bdist_mpkg: https://pypi.python.org/pypi/bdist_mpkg/ The main new feature is Python 3 compatibility: https://github.com/matthew-brett/bdist_mpkg/blob/master/Changelog Thanks to Bob Ippolito for the original code and Ronald Oussoren for taking care of it

Re: [Pythonmac-SIG] bdist_mpkg replacement

2013-02-17 Thread Matthew Brett
t's using an > obsolete package format anyway, I started getting my hands dirty and > looked into writing a replacement for it. In the end, it wasn't actually > that difficult and it works fine for my project now. I'm maintaining bdist_mpkg, and it should support Python 3 no