vote up 2 vote down star

I have an open-source Python project (called GarlicSim), and I maintain 4 different versions of it for Python versions 2.4, 2.5, 2.6 and 3.1. Yes, maybe it's unusual, but I like using as much features as possible. I keep them in 4 different forks of the repository.

Now I want to upload my project to the cheeseshop. What's the way to do this? I expect that a user will automatically get the version of GarlicSim appropriate for his Python version. How do I do that?

flag

65% accept rate

1 Answer

vote up 3 vote down
python2.4 setup.py bdist_egg upload
python2.5 setup.py bdist_egg upload
python2.6 setup.py bdist_egg upload
python3.1 setup.py bdist_egg upload
link|flag
Can you be more specific? For example, is it okay if all versions have the same name or will it mess things up? – cool-RR Nov 6 at 9:38
Yeah, it's fine to have different versions; several projects do this including, one of mine: pypi.python.org/pypi/poster – Chris AtLee Nov 6 at 13:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.