From 0f74e91a449cc0e21a2efe9761f69a0f85bacd1c Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Tue, 13 Dec 2022 12:10:59 +0100 Subject: [PATCH] python3-numpy: fix upstream version check Default regex is also considering numpy release candidates. (From OE-Core rev: e2f81a955457fc50107ec9f0e2aea3641ed8a048) Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/recipes-devtools/python/python3-numpy_1.23.4.bb | 1 + 1 file changed, 1 insertion(+) 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 d9172692b5..679a6f4081 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"