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
👋 The dashboard (which I learned about in conda-forge/cuda-feedstock#61 (comment)) is super nice! If I could put in a stretch goal of a feature request, it would be useful to add a view that would allow for you to type in a conda-forge package name and have it list for you all the packages on conda-forge that depend on that package. This is basically what conda repoquery whoneeds does already, so as an example of what I'm suggesting, in the dashboard I could type in awkward and it would return to me output similar to
$ micromamba repoquery whoneeds --channel conda-forge awkward > out.txt # Need to strip off the headers first
$ tail -n +$(($(grep -n -m 1 "Depends" out.txt | grep -Po '^[0-9]+')+2)) out.txt | awk '{print $1}'| sort --uniqueakimboawkward-numbaawkward-pandascabinetryclouddriftcoffeacuda_histogramdask-awkwardfastjetkm3iokm3pipelbapcommonlhcbdiracpykealibpylheraggedrubin-env-extrasrubin-env-rspscikit-heptiled-baseuprootuproot-baseuproot-browseruproot-methods
In situations where there's no package that includes the target package as run requirement (like cuda-nvtx-dev)
$ micromamba repoquery whoneeds --channel conda-forge cuda-nvtx-devGetting repodata from channels...conda-forge/linux-64 Using cacheconda-forge/noarch Using cachenodefaults/linux-64 Using cachenodefaults/noarch Using cacheNo entries matching "cuda-nvtx-dev" foundTry looking remotely with '--remote'.
the dashboard would note that there are no packages on conda-forge that required that target package.
The text was updated successfully, but these errors were encountered:
👋 The dashboard (which I learned about in conda-forge/cuda-feedstock#61 (comment)) is super nice! If I could put in a stretch goal of a feature request, it would be useful to add a view that would allow for you to type in a conda-forge package name and have it list for you all the packages on conda-forge that depend on that package. This is basically what
conda repoquery whoneeds
does already, so as an example of what I'm suggesting, in the dashboard I could type inawkward
and it would return to me output similar toIn situations where there's no package that includes the target package as
run
requirement (likecuda-nvtx-dev
)the dashboard would note that there are no packages on conda-forge that required that target package.
The text was updated successfully, but these errors were encountered: