From 8cfd36b07cc17c57051fe38d8e90209c47bad40f Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Thu, 28 Dec 2023 21:52:01 -0500 Subject: [PATCH] Trying to make sure only one set of metadata is found for VTK --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9f6c5f5..7a683b1 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ def populate_lib_dir(conda_prefix, vtk_manylinux, out_dir): vtk_manylinux = pathlib.Path(vtk_manylinux) out_dir = pathlib.Path(out_dir) - fns = list((conda_prefix / "conda-meta").glob("vtk-*.json")) + fns = list((conda_prefix / "conda-meta").glob("vtk-9*-qt_*.json")) if len(fns) != 1: raise Exception(f"could not find unique vtk meta: {fns}") vtk_meta = json.loads(fns[0].read_text())