Op 15-06-10 10:38, Wouter Vanden Hove schreef: > Hi, > > When using the buildout-extension buildout.dumppickedversions, > it seems that in my resulting dumped_versions.cfg > the names of packages have been changed if the package-name contains > underscores like company.policy_default, company.theme_default. > > Is this a bug in dumppickedversions > or some workaround for a problem in buildout and/or Pypi? > > As these eggs are released on an internal pypi with the original names (thus > containing underscores), I currently need to fix the pinning manually.
My guess is that this is simply how setuptools/distribute/distutils reports it. I see similar things for feedparser being reported as FeedParser and PILwoTk being reported as PILwoTK (or the other way around). Similar things happen with easy_install. Create a virtualenv. Installing setuptools_git and setuptools_hg has the same effect as setuptools-git and setuptools-hg. There is actually some redirection setup: http://pypi.python.org/simple/setuptools-hg redirects to http://pypi.python.org/simple/setuptools_hg/ and for git it is the other way around. -- Maurits van Rees Programmer, Zest Software _______________________________________________ Product-Developers mailing list [email protected] http://lists.plone.org/mailman/listinfo/product-developers
