Skip to content

Commit 3acbdf2

Browse files
authored
Merge pull request #1588 from hmaarrfk/patch-2
2 parents d35c889 + 3ec7147 commit 3acbdf2

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/maintainer/knowledge_base.rst

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,14 +336,21 @@ In the case of linking, you need to use the ``pin_compatible`` function to ensur
336336
- {{ pin_compatible('numpy') }}
337337
338338
339-
At the time of writing, above is equivalent to the following,
339+
At the time of writing (January 22, 2022), above is equivalent to the following,
340340

341341
.. code-block:: yaml
342342
343343
host:
344-
- numpy 1.14.6
344+
- numpy 1.18 # [py==37]
345+
- numpy 1.18 # [py==38]
346+
- numpy 1.19 # [py==39]
345347
run:
346-
- numpy >=1.14.6,<2.0.a0
348+
- numpy >=1.18.5,<2.0.a0 # [py==37]
349+
- numpy >=1.18.5,<2.0.a0 # [py==38]
350+
- numpy >=1.19.5,<2.0.a0 # [py==39]
351+
352+
See the pinning repository for what the pinning corresponds to at time of writing
353+
https://github.com/conda-forge/conda-forge-pinning-feedstock/blob/master/recipe/conda_build_config.yaml#L631
347354

348355

349356
.. admonition:: Notes

0 commit comments

Comments
 (0)