Re: [julia-users] "Number of packages that depend on this package" at http://pkg.julialang.org/ - which ones?

2016-04-05 Thread Patrick Kofod Mogensen
Thank you. Unsure about the discrepancy. Could be because the pkg.julialang.org is a few weeks old, but maybe not. On Tuesday, April 5, 2016 at 12:31:39 AM UTC+2, Tim Holy wrote: > > Pkg.dependents should do it. To get both direct and indirect dependents, > you > can do this: > > julia> sold

Re: [julia-users] "Number of packages that depend on this package" at http://pkg.julialang.org/ - which ones?

2016-04-04 Thread Tim Holy
Pkg.dependents should do it. To get both direct and indirect dependents, you can do this: julia> sold = Set(); s = Pkg.dependents("ParserCombinator") 3-element Array{AbstractString,1}: "LightGraphs" "QDXML" "LispSyntax" julia> sold = Set(); s = Set(Pkg.dependents("ParserCombinator"))