Skip to content

Commit

Permalink
add missing numpy lower bounds to scipy (#824)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] authored Aug 17, 2024
2 parents f4728dd + 40ce064 commit 6902e54
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions recipe/patch_yaml/scipy.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# missing lower bounds for numpy after 2.0 migration, c.f.
# https://github.com/conda-forge/numpy-feedstock/issues/324
# the upper bound has been there correctly, c.f.
# https://github.com/conda-forge/scipy-feedstock/commit/0711eb22f502ce2f1ea1bd7a22ffd4b8f73b73a7
if:
name: scipy
version: 1.14.0

then:
# https://github.com/scipy/scipy/blob/v1.14.0/pyproject.toml#L55
- replace_depends:
old: numpy <2.3
new: numpy >=1.23.5,<2.3

---

if:
name: scipy
version_lt: 1.14.0
version_ge: 1.13.0

then:
# https://github.com/scipy/scipy/blob/v1.13.1/pyproject.toml#L55
- replace_depends:
old: numpy <2.3
new: numpy >=1.22.4,<2.3

---

# 2024/01 -- hmaarrfk
# scipy version 1.12.0 build 2 was patched
# for compatibility with libopenblas 0.3.26
Expand Down

0 comments on commit 6902e54

Please sign in to comment.