Skip to content

Commit

Permalink
Trying to make sure only one set of metadata is found for VTK
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Dec 29, 2023
1 parent 0e9fc4b commit 8cfd36b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 8cfd36b

Please sign in to comment.