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

2018-04-08 Thread Chris Jerdonek
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: > > > > 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 > > se

Re: [Pythonmac-SIG] py2app and PIL question

2005-11-16 Thread Chris Jerdonek
On Nov 16, 2005, at 4:57 PM, Bob Ippolito wrote: > py2app can't detect data dependencies, period. You need to figure out > what data files you need, and explicitly specify them. The referenced > code sure looks like it was looking for a data file, and I don't > recall PIL having any data file

Re: [Pythonmac-SIG] py2app and PIL question

2005-11-16 Thread Chris Jerdonek
On Nov 16, 2005, at 2:14 PM, Bob Ippolito wrote: class FreeTypeFont: "FreeType font wrapper (requires _imagingft service)" def __init__(self, file, size, index=0, encoding=""): # FIXME: use service provider instead import _imagingft (1

Re: [Pythonmac-SIG] py2app and PIL question

2005-11-16 Thread Chris Jerdonek
On Nov 16, 2005, at 1:38 PM, Bob Ippolito wrote: >>File "PIL/ImageFont.pyc", line 121, in __init__ >> IOError: cannot open resource >> >> # Wrapper for FreeType fonts. Application code should use the >> # truetype factory function to create font objects. >> >> class FreeTypeFont: >> "Fre

Re: [Pythonmac-SIG] py2app and PIL question

2005-11-16 Thread Chris Jerdonek
eeType font wrapper (requires _imagingft service)" def __init__(self, file, size, index=0, encoding=""): # FIXME: use service provider instead import _imagingft (121) self.font = _imagingft.getfont(file, size, index, encoding) On Nov 16, 2005, at 12:18 PM, B

[Pythonmac-SIG] py2app and PIL question

2005-11-16 Thread Chris Jerdonek
I have a python program that uses some commands from the PIL module (and also wxPython). I have PIL installed on my Mac, and the python program works fine when I run the program from the command line. The application I get from py2app also works fine -- until I get to a point in the program

[Pythonmac-SIG] mac python gui: Framework vs. wxPython

2005-02-19 Thread Chris Jerdonek
Newcomer question: For making a GUI python application for Mac, what're the differences and pros/cons between (1) using wxPython and (2) using the MacPython modules described in the official python documentation (EasyDialogs, Framework, etc.)? And what's the relationship between these two appro

[Pythonmac-SIG] py2app basics

2005-02-04 Thread Chris Jerdonek
Hi, I'm trying to use py2app on an open-source program that I basically understand the workings of, but didn't write. I've tried "python setup.py py2app" several times, but it doesn't work. I get error messages like the one below, when I click on the resulting app icon: An unexpected

Re: [Pythonmac-SIG] modifying setup.py: py2exe -> py2app

2005-02-01 Thread Chris Jerdonek
-- (530) 297-6947 http://DavisChoiceVoting.org On Feb 1, 2005, at 7:48 PM, Charles Hartman wrote: I'm in the same boat with C. Jerdonek, though I suspect I know less. So when I saw this passage, I hung, as always, on every word from py2app's own master. Aha! I said. I think I know less, Charles.

[Pythonmac-SIG] modifying setup.py: py2exe -> py2app

2005-02-01 Thread Chris Jerdonek
Hi, I'm new to py2app (and also to python somewhat). I wasn't able to find any documentation, so I'm turning here. I'm trying to generate a setup.py file that I can use with py2app. I have the setup.py file that someone made tailored to py2exe. Is it straightforward to modify that? I haven't ha