From: Chris Jerdonek Date: Wed, 14 Nov 2012 20:36:53 +0000 (-0800) Subject: Backport from 3.2: update PyPI docs regarding listing versions (issue #16400). X-Git-Tag: v2.7.4rc1~377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=080123119d55b24a91d07efe944d3ce7dc57afe6;p=thirdparty%2FPython%2Fcpython.git Backport from 3.2: update PyPI docs regarding listing versions (issue #16400). --- diff --git a/Doc/distutils/packageindex.rst b/Doc/distutils/packageindex.rst index 1498394481a2..9fc18c1b89e1 100644 --- a/Doc/distutils/packageindex.rst +++ b/Doc/distutils/packageindex.rst @@ -43,9 +43,9 @@ the web interface. They may also designate other users as Owners or Maintainers. Maintainers may edit the package information, but not designate other Owners or Maintainers. -By default PyPI will list all versions of a given package. To hide certain -versions, the Hidden property should be set to yes. This must be edited through -the web interface. +By default PyPI displays only the newest version of a given package. The web +interface lets one change this default behavior and manually select which +versions to display and hide. .. _pypirc: diff --git a/Misc/NEWS b/Misc/NEWS index 6f1d66e2a914..c96ea91b2a44 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -558,6 +558,9 @@ Tools/Demos Documentation ------------- +- Issue #16400: Update the description of which versions of a given package + PyPI displays. + - Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. Patch by Brian Brazil.