Skip to content

Commit

Permalink
Merge pull request #483 from climbfuji/bugfix/scipy_llvm_spackstack
Browse files Browse the repository at this point in the history
Bug fix in py-scipy for versions 1.8.0 to 1.14.0 (small_dynamic_array.h: error: reference to non-static member function must be called) spack spack#47620
  • Loading branch information
climbfuji authored Nov 15, 2024
2 parents b6ef265 + 666c2ef commit b274d59
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions var/spack/repos/builtin/packages/py-scipy/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,13 @@ class PyScipy(PythonPackage):
# Additional changes needed for scipy-1.8.0
patch("use_stdc_no_threads_scipy180_addon.patch", when="@1.8: platform=darwin %gcc")

# 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")]
Expand Down

0 comments on commit b274d59

Please sign in to comment.