Welcome! Please see the About page for a little more info on how this works.

0 votes
in tools.deps by
tools.deps seems to return different results based on the order the dependencies are placed inside the dependency map.

That is,

{:deps {a/a {:dep :data}
        b/b {:dep :data}}}


and


{:deps {b/b {:dep :data}
        a/a {:dep :data}}}


may return different results. I would expect the order in the dependency map to not matter.

I have attached a patch with a minimal reproducible test case for this issue, which currently fails.

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/TDEPS-58 (reported by hypirion)
...