[Python-Dev] 3.2.0

Nick Coghlan ncoghlan at gmail.com
Thu Feb 17 23:01:55 CET 2011


On Fri, Feb 18, 2011 at 7:56 AM, Nick Coghlan <ncoghlan at gmail.com> wrote:
> For the 3.2 series, I think living with the ambiguity for another 6
> months or so (however long it is until 3.2.1 is released) is the
> better choice. There are enough parts of the release process that
> involve the version number that we *really* shouldn't be messing with
> it during the RC phase.

And the number 1 reason I consider messing with the numbering to be a bad idea:

>>> "3.2" >= "3.2.0"
False
>>> (3, 2) >= (3, 2, 0)
False

If we miss anything, it could easily lead to errors like the two
above. I'll grant that it *shouldn't* be any different to what happens
when the release version gets bumped to 3.2.1 in the first maintenance
release, but I really don't trust "should" all that much in a release
management context :)

Cheers,
Nick.

-- 
Nick Coghlan   |   ncoghlan at gmail.com   |   Brisbane, Australia


More information about the Python-Dev mailing list