conda-forge / openblas-feedstock

A conda-smithy repository for openblas.
BSD 3-Clause "New" or "Revised" License
9 stars 38 forks source link

Add a run_constrained for libopenblas on openblas. #71

Closed isuruf closed 5 years ago

isuruf commented 5 years ago

To avoid libopenblas 0.3.6 and openblas 0.3.5 being installable in the same environment.

ocefpaf commented 5 years ago

@isuruf we have:

  - name: openblas
    ...
    requirements:
      run:
        - {{ pin_subpackage("libopenblas", exact=True) }}

Isn't that enough? Or should we do:

  - name: openblas
    ...
    requirements:
      run:
        - {{ pin_subpackage("libopenblas", exact=True) }}
      run_constrained:
        - libopenblas =={{ version }}
isuruf commented 5 years ago

Done in https://github.com/conda-forge/openblas-feedstock/pull/72