Hi!


I'm seeing that some packages uploaded to PyPI only have their 'egg' form.  It
would be really nice if besides uploading the egg the source was also
uploaded.

An egg is built for a specific version of Python and newer / older versions
won't use that egg.  For example, now that we can run TG with Python 2.5 all
packages that are there only in 'egg' form and built for Python 2.4 aren't
'easy_install'able and won't be fetched automatically.

Most packages are installed if you explicitly name them, even if their egg is
built for an older version of Python (2.4 in this example). 


So, make your upload like this:

    python setup.py sdist upload 
    python setup.py bdist_egg upload 

instead of just the last line.


Thanks!
-- 
Jorge Godoy      <[EMAIL PROTECTED]>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to