Re: [go-nuts] Understanding the output of "go get"

2017-04-22 Thread Joshua Humphries
I did indeed try that. Same result as wiping everything from my GOPATH (except the source I am immediately working on) and doing a normal "go get ...". On Saturday, 22 April 2017 12:58:43 UTC-4, David Peacock wrote: > > On Sat, Apr 22, 2017 at 7:54 AM, Joshua Humphries > wrote: > >> I have some

Re: [go-nuts] Understanding the output of "go get"

2017-04-22 Thread David Peacock
On Sat, Apr 22, 2017 at 7:54 AM, Joshua Humphries wrote: > I have some code for which "go get -t -v" is suddenly failing for Go 1.6, > complaining about a reference to the "context" package (added in 1.7). > > I haven't changed any of my imports, so this means a dependency has been > updated to s

[go-nuts] Understanding the output of "go get"

2017-04-22 Thread Joshua Humphries
Hello, fellow Gophers! I have some code for which "go get -t -v" is suddenly failing for Go 1.6, complaining about a reference to the "context" package (added in 1.7). I haven't changed any of my imports, so this means a dependency has been updated to suddenly require Go 1.7. I'm trying to figu