At 12:04 PM 4/12/2006 -0500, Ian Bicking wrote: >Yes, requiring a fixed version doesn't work in my experience. Requiring >a range should, i.e., >=1.5,<1.6.
You probably want "<1.6a", to avoid pre-releases. It especially helps if you use a version number scheme that requires certain digits to be bumped when there's an API change. For example, the above would always be a good idea if the minor release number indicates API changes. _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
