Skip to content

Commit

Permalink
BLD: meson, mark xsimd as not required (pkg-config not available on p…
Browse files Browse the repository at this point in the history
…ip envs). (scipygh-15698)
  • Loading branch information
schettino72 committed Mar 13, 2022
1 parent e5d2719 commit 25165d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scipy/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ if use_pythran
check: true
).stdout().strip()
inc_pythran = include_directories(incdir_pythran)
xsimd_dep = dependency('xsimd')
# required explicit dependency on "some" installations with conda gh-15698
xsimd_dep = dependency('xsimd', required: false)
else
inc_pythran = []
endif
Expand Down

0 comments on commit 25165d2

Please sign in to comment.