changed the post.dev marker according to latest state
This commit is contained in:
parent
1e8c94919f
commit
27b5dc3087
|
@ -251,7 +251,7 @@ http://bitbucket.org/tarek/distutilsversion/src/
|
||||||
|
|
||||||
The pseudo-format supported is::
|
The pseudo-format supported is::
|
||||||
|
|
||||||
N.N[.N]+[abc]N[.N]+[.(dev|post)N+|(devN+postN+)]
|
N.N[.N]+[abc]N[.N]+[.postN+][.devN+]
|
||||||
|
|
||||||
Some examples probably make it clearer::
|
Some examples probably make it clearer::
|
||||||
|
|
||||||
|
@ -267,7 +267,7 @@ Some examples probably make it clearer::
|
||||||
... < V('1.0c1')
|
... < V('1.0c1')
|
||||||
... < V('1.0.dev456')
|
... < V('1.0.dev456')
|
||||||
... < V('1.0')
|
... < V('1.0')
|
||||||
... < V('1.0.dev456post623')
|
... < V('1.0.post623.dev456')
|
||||||
... < V('1.0.post456'))
|
... < V('1.0.post456'))
|
||||||
True
|
True
|
||||||
|
|
||||||
|
@ -276,7 +276,7 @@ post-releases -- which apparently is used by a number of projects out there
|
||||||
(e.g. Twisted [#twisted]_). For example *after* a "1.2.0" release there might
|
(e.g. Twisted [#twisted]_). For example *after* a "1.2.0" release there might
|
||||||
be a "1.2.0-r678" release. We used "post" instead of "r" because the "r" is
|
be a "1.2.0-r678" release. We used "post" instead of "r" because the "r" is
|
||||||
ambiguous as to whether it indicates a pre- or post-release.
|
ambiguous as to whether it indicates a pre- or post-release.
|
||||||
Last ".dev456post623" is a development version of a post-release.
|
Last ".post623.dev456" is a development version of a post-release.
|
||||||
|
|
||||||
``verlib`` provides a ``RationalVersion`` class and a
|
``verlib`` provides a ``RationalVersion`` class and a
|
||||||
``suggest_rational_version`` function.
|
``suggest_rational_version`` function.
|
||||||
|
@ -310,7 +310,7 @@ Each part is a tuple and there are three parts:
|
||||||
|
|
||||||
- the main version part
|
- the main version part
|
||||||
- the pre-release part
|
- the pre-release part
|
||||||
- the `devpost` marker part
|
- the `postdev` marker part
|
||||||
|
|
||||||
Examples ::
|
Examples ::
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue