Bug fix in py-scipy for versions 1.8.0 to 1.14.0 that surfaces with latest Clang and Intel LLVM compilers (#47620)

This commit is contained in:
Dom Heinzeller 2024-11-15 22:56:25 -07:00 committed by GitHub
parent 7443a3b572
commit 60eb0e9c80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -178,6 +178,13 @@ class PyScipy(PythonPackage):
patch("scipy-clang.patch", when="@1.5.0:1.6.3 %clang")
# https://github.com/scipy/scipy/issues/21884
patch(
"https://github.com/scipy/scipy/commit/ab7d08c6148286059f6498ab5c3070268d13cbd9.patch?full_index=1",
sha256="37209324c6c2d9bf9284bf4726ec3ea7ecafabf736c7a72cf6789af97aebd30b",
when="@1.8.0:1.14.0",
)
@property
def archive_files(self):
return [join_path(self.stage.source_path, "build", "meson-logs", "meson-log.txt")]