diff options
author | Jason Veatch <334448+veatch@users.noreply.github.com> | 2022-10-10 14:25:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 14:25:50 -0400 |
commit | 35df25445f719d9291b065dbacbf82bfc83b53da (patch) | |
tree | 560660c65a9ceae89c30fd358dc1d8e9e4932e98 /docs | |
parent | 9482cd9970aef049f38d08e284fc24e56357253c (diff) | |
download | python-setuptools-git-35df25445f719d9291b065dbacbf82bfc83b53da.tar.gz |
Update docs/userguide/distribution.rst
Thanks @abravalheri for this change!
Co-authored-by: Anderson Bravalheri <andersonbravalheri+github@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/userguide/distribution.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/userguide/distribution.rst b/docs/userguide/distribution.rst index 60f85868..ae2dc4a4 100644 --- a/docs/userguide/distribution.rst +++ b/docs/userguide/distribution.rst @@ -45,9 +45,9 @@ by setuptools. Note that only ``a``, ``b``, and ``rc`` are :pep:`440`-compliant pre-release tags. In addition, there are three special prerelease tags that are treated as if -they were the letter ``c``: ``pre``, ``preview``, and ``rc``. So, version -``2.4rc1``, ``2.4pre1`` and ``2.4preview1`` are all the exact same version as -``2.4c1``, and are treated as identical by setuptools. +they were ``rc``: ``c``, ``pre``, and ``preview``. So, version +``2.4c1``, ``2.4pre1`` and ``2.4preview1`` are all the exact same version as +``2.4rc1``, and are treated as identical by setuptools. A post-release tag is the string ``.post``, followed by a non-negative integer value. Post-release tags are generally used to separate patch numbers, port |