You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/maintainer/knowledge_base.md
+4-18Lines changed: 4 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -533,7 +533,6 @@ requirements:
533
533
- numpy
534
534
run:
535
535
- python
536
-
- {{ pin_compatible("numpy") }}
537
536
```
538
537
539
538
With MPI, openmpi is required for the build platform as the compiler wrappers are binaries, but mpich is not required as the compiler wrappers are scripts (see [example](https://github.com/conda-forge/mpi4py-feedstock/blob/743d379c4a04/recipe/meta.yaml#L37)):
@@ -770,28 +769,14 @@ host:
770
769
- numpy
771
770
```
772
771
773
-
At the time of writing (January, 2025), above is equivalent to the following,
772
+
At the time of writing (June 2025), above is equivalent to the following,
774
773
775
774
```yaml
776
775
host:
777
-
- numpy 1.22 # [py==39]
778
-
- numpy 1.22 # [py==310]
779
-
- numpy 1.23 # [py==311]
780
-
- numpy 1.26 # [py==312]
776
+
- numpy 2.*
781
777
```
782
778
783
-
though the ongoing migration for numpy 2.0 has already been applied to many
784
-
feedstocks, in which case the pinning looks like
785
-
786
-
```yaml
787
-
host:
788
-
- numpy 2.0 # [py==39]
789
-
- numpy 2.0 # [py==310]
790
-
- numpy 2.0 # [py==311]
791
-
- numpy 2.0 # [py==312]
792
-
```
793
-
794
-
See the pinning repository for what the pinning corresponds to at time of writing
779
+
See the pinning repository for what the pinning corresponds to at any given time
0 commit comments