We should only be updating to releases, not dev or alpha or any other non-released state. That is why the regex is they way it is.
On Fri, May 8, 2020 at 4:37 AM Konrad Weihmann <[email protected]> wrote: > Some pypi packages do have suffixes like dev, or a0 or b1. > When doing a version check on these, the version will get falsely > trimmed down to a version without the suffix. > > E.g. 3.8.0a1 will become 3.8.0 which then also means that > a version upgrade from 3.8.0a1 to 3.8.0a2 will not be detected. > > Fix that by inserting an optional suffix group with alphanumeric charset. > > Signed-off-by: Konrad Weihmann <[email protected]> > --- > meta/classes/pypi.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/classes/pypi.bbclass b/meta/classes/pypi.bbclass > index e5d7ab3ce1..7d0f367a02 100644 > --- a/meta/classes/pypi.bbclass > +++ b/meta/classes/pypi.bbclass > @@ -23,4 +23,4 @@ SRC_URI += "${PYPI_SRC_URI}" > S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}" > > UPSTREAM_CHECK_URI ?= "https://pypi.python.org/pypi/${PYPI_PACKAGE}/" > -UPSTREAM_CHECK_REGEX ?= "/${PYPI_PACKAGE}/(?P<pver>(\d+[\.\-_]*)+)" > +UPSTREAM_CHECK_REGEX ?= > "/${PYPI_PACKAGE}/(?P<pver>(\d+[\.\-_]*)+[a-z0-9]*)" > -- > 2.20.1 > > >
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#138066): https://lists.openembedded.org/g/openembedded-core/message/138066 Mute This Topic: https://lists.openembedded.org/mt/74070586/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
