From 7aa7ba22f265e2457f26d9a2532bd236cc3355ef Mon Sep 17 00:00:00 2001 From: ericLemanissier Date: Wed, 1 Feb 2023 20:00:52 +0100 Subject: [PATCH] fixup pybind detection cf https://github.com/pybind/pybind11/tags?after=v2.7.1 --- ccb/project_specifics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccb/project_specifics.py b/ccb/project_specifics.py index 2b52ed4f..c69d3a9a 100644 --- a/ccb/project_specifics.py +++ b/ccb/project_specifics.py @@ -14,7 +14,7 @@ "openssl": [re.compile(r"^OpenSSL-fips-(.*)")] + TAGS_BLACKLIST, "libzip": [re.compile(r"^brian-gladman-fcrypt-(.*)")] + TAGS_BLACKLIST, "libselinux": [re.compile(r"^[0-9]{8}(.*)")] + TAGS_BLACKLIST, - "pybind11": [re.compile(r"(.*)b[0-9]+$")] + TAGS_BLACKLIST, + "pybind11": [re.compile(r"(.*)b[0-9]+$"), re.compile(r"^(archive|milestones_reached)/")] + TAGS_BLACKLIST, "lerc": [re.compile(r"^runtimecore_(.*)")] + TAGS_BLACKLIST, "xtensor": [re.compile(r"(.*)-binder[0-9]*$")] + TAGS_BLACKLIST, "libunwind": [re.compile(r"^4\.0\.(6|7|9|10)$")] + TAGS_BLACKLIST,