Skip to content

Commit e166471

Browse files
committed
[DEBUG] Make file-api failure an error
Signed-off-by: Cristian Le <[email protected]>
1 parent bc61c5b commit e166471

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/scikit_build_core/cmake.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ def configure(
263263

264264
try:
265265
self.file_api = load_reply_dir(self._file_api_query)
266-
except ExceptionGroup as exc:
267-
logger.warning("Could not parse CMake file-api")
268-
logger.debug(str(exc))
266+
except ExceptionGroup:
267+
logger.error("Could not parse CMake file-api")
268+
raise
269269

270270
def _compute_build_args(
271271
self,

0 commit comments

Comments
 (0)