5 Dec
2018
5 Dec
'18
6:10 p.m.
On 2018-12-06 01:50:14 +0900 (+0900), Trinh Nguyen wrote:
I just wonder why the CI uses "searchlight==6.0.0.0b2.dev11" [1] when the latest release I made is "6.0.0.0b1"?
[1] http://logs.openstack.org/71/622871/1/check/openstack-tox-py27/aca5881/job-o... [...]
Python PEP 440 sorts .dev versions earlier than the equivalent string prior to the .dev portion, so PBR is generating a version for you which sorts after 6.0.0.0b1 (the most recent tag on that branch) but before 6.0.0.0b2 (the next possible beta tag you might use in the future). The "11" there indicates it sees you have 11 additional commits on that branch since the 6.0.0.0b1 tag was applied. -- Jeremy Stanley