Re: [go-nuts] Looking for an app w/ mult. versions of a dependency

2019-12-08 Thread Paul Jolly
> I'm wondering if any of you other nuts can point out examples? It's a hypothetical example but perhaps shows enough of what you're after? https://github.com/go-modules-by-example/index/blob/master/015_semantic_import_versioning/README.md -- You received this message because you are subscribed

Re: [go-nuts] Looking for an app w/ mult. versions of a dependency

2019-12-05 Thread Andy Balholm
I’m pretty sure there is no “otherwise simple” example, because depending on two versions of the same library isn’t usually something a project does deliberately (except as a last resort). It’s normally the consequence of an extremely complex forest of dependencies. Andy > On Dec 5, 2019, at 5

[go-nuts] Looking for an app w/ mult. versions of a dependency

2019-12-05 Thread George Hartzell
Hi All, I'm working on improving the Spack (https://spack.io) package managers support for Go-based application (https://github.com/spack/spack/issues/13023). I'm trying to wrap my head around what Go's support for simultaneously using multiple major versions of a dependency means to Spack. To