From: Alexander Kanavin Date: Tue, 13 Dec 2022 11:10:59 +0000 (+0100) Subject: python3-numpy: fix upstream version check X-Git-Tag: uninative-3.8~260 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2f81a955457fc50107ec9f0e2aea3641ed8a048;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git python3-numpy: fix upstream version check Default regex is also considering numpy release candidates. Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni --- diff --git a/meta/recipes-devtools/python/python3-numpy_1.23.4.bb b/meta/recipes-devtools/python/python3-numpy_1.23.4.bb index d9172692b5e..679a6f40815 100644 --- a/meta/recipes-devtools/python/python3-numpy_1.23.4.bb +++ b/meta/recipes-devtools/python/python3-numpy_1.23.4.bb @@ -16,6 +16,7 @@ SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${SRCNAME}-${PV}.tar.gz \ SRC_URI[sha256sum] = "ed2cc92af0efad20198638c69bb0fc2870a58dabfba6eb722c933b48556c686c" GITHUB_BASE_URI = "https://github.com/numpy/numpy/releases" +UPSTREAM_CHECK_REGEX = "releases/tag/v?(?P\d+(\.\d+)+)$" DEPENDS += "python3-cython-native"