diff --git a/python-scikit-build.changes b/python-scikit-build.changes index cc7123d..4608efb 100644 --- a/python-scikit-build.changes +++ b/python-scikit-build.changes @@ -1,8 +1,8 @@ ------------------------------------------------------------------- -Wed Sep 17 05:19:11 UTC 2025 - Steve Kowalik +Wed Sep 17 05:44:35 UTC 2025 - Steve Kowalik - Update patch support-new-cmake.patch: - * Check for a different cache error message. + * Check for a different cache error message as well as the original. ------------------------------------------------------------------- Mon Aug 4 02:52:33 UTC 2025 - Steve Kowalik diff --git a/support-new-cmake.patch b/support-new-cmake.patch index 2f2533e..8430b15 100644 --- a/support-new-cmake.patch +++ b/support-new-cmake.patch @@ -12,12 +12,13 @@ Index: scikit_build-0.18.1/tests/test_cmaker.py =================================================================== --- scikit_build-0.18.1.orig/tests/test_cmaker.py +++ scikit_build-0.18.1/tests/test_cmaker.py -@@ -82,7 +82,7 @@ def test_make_without_configure_fails(ca +@@ -82,7 +82,8 @@ def test_make_without_configure_fails(ca CMaker().make() _, err = capfd.readouterr() assert "An error occurred while building with CMake." in str(excinfo.value) - assert "Error: could not load cache" in err -+ assert "Error: not a CMake build directory (missing CMakeCache.txt)" in err ++ assert ("Error: could not load cache" in err) or ( ++ "Error: not a CMake build directory (missing CMakeCache.txt)" in err) @pytest.mark.parametrize("configure_with_cmake_source_dir", [True, False])