You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go get method:
go get github.com/mediocregopher/radix
--> go get for /v3 fails with:
package github.com/mediocregopher/radix/v3: cannot find package "github.com/mediocregopher/radix/v3" in any of:
// $GOROOT
// $GOPATH
Issue:
Using the library functions fine. Vendoring (godep) fails, as there are references to /v3 which cannot be resolved.
The text was updated successfully, but these errors were encountered:
cdepauw
changed the title
Non-module aware go unknown reference to \v3 package
Non-module aware go: unknown reference to /v3 package
Jul 9, 2019
I just noticed I completely missed #53 which is essentially dealing with the same topic. Closing this issue due to this.
The local fix applied now was a text removal of all "/v3" in your repo and doing a local commit. That satisfied godep and allowed me to vendor it. Only downside is that other devs pitching in on my repo will need to apply the same trick if they want/need to revendor.
Hi @cdepauw , glad you saw #53, I'm hoping to get back to focusing on that soon, once all these unmarshaling problems are resolved, so keep an eye out there :)
Go version:
go version go1.12 windows/amd64
Go get method:
go get github.com/mediocregopher/radix
--> go get for /v3 fails with:
package github.com/mediocregopher/radix/v3: cannot find package "github.com/mediocregopher/radix/v3" in any of:
// $GOROOT
// $GOPATH
Issue:
Using the library functions fine. Vendoring (godep) fails, as there are references to /v3 which cannot be resolved.
The text was updated successfully, but these errors were encountered: