|
|
|
|
|
by mypalmike
1434 days ago
|
|
As soon as you take 2 dependencies in any language, there's a chance you will not be able to upgrade both of them to latest versions because somewhere in the two dependency subgraphs there is a conflict. There's no magic to avoid this, though tooling can help find potentially working versions (at least by declaration). It's often the case that you don't encounter conflicts in Python or other languages, but I don't imagine that Go is immune. |
|
If A and B both depend on different versions of C, then both versions of C are installed and A/B see the version they want.