From c8e5fb92e43e65a1e1de8761c2832c6835caa659 Mon Sep 17 00:00:00 2001 From: Nathan Tenney Date: Mon, 5 Jun 2023 13:12:47 -0700 Subject: [PATCH 1/2] replaced --build-option with --config-settings due to a removal of the aforementioned argument in recent versions of pip --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 7e66288328..202377a638 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -137,7 +137,7 @@ def update(operation, verbose=None, offline=False, optional_requirements=[], rab # option_requirements contains wheel as first entry # Build option_requirements separately to pass install options - build_option = '--build-option' if wheeling else '--install-option' + build_option = '--config-settings' if wheeling else '--install-option' for requirement, options in option_requirements: args = [] From b1f3794f9756c4cc3f32d565fe1e9fbc3e7921c9 Mon Sep 17 00:00:00 2001 From: Nathan Tenney Date: Wed, 7 Jun 2023 15:02:16 -0700 Subject: [PATCH 2/2] Changed build-option back and changed install-option to config-settings --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 202377a638..0fd4bf522d 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -137,7 +137,7 @@ def update(operation, verbose=None, offline=False, optional_requirements=[], rab # option_requirements contains wheel as first entry # Build option_requirements separately to pass install options - build_option = '--config-settings' if wheeling else '--install-option' + build_option = '--build-option' if wheeling else '--config-settings' for requirement, options in option_requirements: args = []