Kevin Dangoor wrote: > On 11/16/05, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > > Create a PKG-INFO file in the test.egg-info subdirectory. It should > > have one line in it: > > > > Version: 0.0 > > > > This should get you going, until Kevin and/or myself work out a proper > > fix. > > For the time being, I've just added a PKG-INFO file to the quickstarted > project. > > (quickstart actually runs egg_info at the end of its generation > process, but the egg-info directory already exists to hold a > sqlobject.txt file.)
FYI, I've just done a bunch of updates to setuptools in Subversion that should fix this and various other issues, including a new 'include_package_data' option that automatically finds any data files that are under revision control or specified using MANIFEST.in. Note that this should allow you to remove the import that's causing this problem in the first place (because you won't need your find_data_files stuff any more), but it also changes things so that a distribution's version is checked as late as possible during a require(), and it can thus avoid running into problems with missing PKG-INFO files most of the time, and even when it can't it's just a warning now. Anyway, give revision 41473 a try and let me know how it works for you.

