From b14c14ddd32fbfde868998f51cc10288f4820706 Mon Sep 17 00:00:00 2001 From: Ryan Mast Date: Wed, 31 Jan 2024 11:50:22 -0800 Subject: [PATCH] Run pipx ensurepath before installing cmake and ninja --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b715e94..f92a24f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,6 +5,9 @@ build-backend = "setuptools.build_meta" [tool.cibuildwheel] build = "cp39-*" before-all = [ + "pipx ensurepath", +] +before-build = [ "pipx install -f cmake==3.21.4", "cmake --version", "pipx install -f ninja==1.10.2.2",