Skip to content

Commit 2bdd65a

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

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
@@ -264,9 +264,9 @@ def configure(
264264
try:
265265
if self._file_api_query.exists():
266266
self.file_api = load_reply_dir(self._file_api_query)
267-
except ExceptionGroup as exc:
268-
logger.warning("Could not parse CMake file-api")
269-
logger.debug(str(exc))
267+
except ExceptionGroup:
268+
logger.error("Could not parse CMake file-api")
269+
raise
270270

271271
def _compute_build_args(
272272
self,

0 commit comments

Comments
 (0)