From 0ffe01952de43813e128561010ea2cec79b50075 Mon Sep 17 00:00:00 2001 From: Tom Birdsong Date: Mon, 28 Nov 2022 12:54:59 -0500 Subject: [PATCH] BUG: Bump scikit-build version to resolve Windows module failures --- requirements-dev.txt | 2 +- scripts/windows_build_module_wheels.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 10b6189f..cc120e59 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1 +1 @@ -scikit-build==0.8.1 +scikit-build==0.16.2 diff --git a/scripts/windows_build_module_wheels.py b/scripts/windows_build_module_wheels.py index 58a1e8d7..90140bf7 100755 --- a/scripts/windows_build_module_wheels.py +++ b/scripts/windows_build_module_wheels.py @@ -49,7 +49,7 @@ def build_wheels(py_envs=DEFAULT_PY_ENVS, cleanup=True, cmake_options=[]): if os.path.exists(requirements_file): check_call([pip, "install", "--upgrade", "-r", requirements_file]) check_call([pip, "install", "cmake"]) - check_call([pip, "install", "scikit_build"]) + check_call([pip, "install", "scikit_build", "--upgrade"]) check_call([pip, "install", "ninja"]) check_call([pip, "install", "delvewheel"])