5 Oct
2009
5 Oct
'09
7:03 p.m.
On Mon, Oct 5, 2009 at 8:48 PM, P.J. Eby <pje@telecommunity.com> wrote:
names for the same thing. (I'm guessing that PIL was registered on PyPI manually, before the "setup.py register" command existed. Heck, it was probably being distributed before the distutils even existed, and indeed before there were such things as "packages" in Python.)
$ more PIL/Image.py ... # partial release history: # 1995-09-09 fl Created # 1996-03-11 fl PIL release 0.0 # 1996-04-30 fl PIL release 0.1b1 ... Looks like the quickest fix is to distribute two source packages, one built the traditional way to eliminate breakage for people using the current tarball layout, and one built with "sdist". </F>