Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (17 loc) · 879 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 879 Bytes

Overview

conda-forge-pinning is a python package that defines and imports conda-forge dependency pinnings.

Build Status

Pinning syntax

cf_pinning/pinning.json defines the pins in a dictionary format. The key is the package name, the value can either be a version string or a list of two version strings. In the latter case, the first version string represents the build dependency, the second sets the run dependency.

Examples

 "fontconfig":"2.12.*",

Pin fontconfig to version 2.12.* in both the build and the run dependency section.

"freetype": ["2.7", "2.7|2.7.*"]

Depend on freetype 2.7 in the build dependency section; pin the run dependency to an arbitrary patch version of freetype 2.7.