Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 797 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 797 Bytes

cf-graph

tests

Repo for holding the conda-forge dependency graph and its introspection.

Note that this repos is mostly bot managed and operated.

Please open issues in cf-scripts.

code snippets to test building the graph

import logging

from conda_forge_tick.make_graph import make_graph
from conda_forge_tick.all_feedstocks import get_all_feedstocks
from conda_forge_tick.utils import load_graph, setup_logger

names = get_all_feedstocks(cached=True)[0:10]
gx = load_graph()

setup_logger(logging.getLogger("conda_forge_tick.make_graph"))
make_graph(names, gx)