Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Module dependencies need updating #11

Closed
jamtur01 opened this issue Aug 30, 2019 · 1 comment
Closed

Module dependencies need updating #11

jamtur01 opened this issue Aug 30, 2019 · 1 comment
Labels
bug Something isn't working

Comments

@jamtur01
Copy link

Running:

go get -u -v github.com/gobuffalo/buffalo-heroku

And I get:

go: github.com/golang/lint@v0.0.0-20190409202823-959b441ac422: parsing go.mod: unexpected module path "golang.org/x/lint"
go: sourcegraph.com/sourcegraph/go-diff@v0.5.1: parsing go.mod: unexpected module path "github.com/sourcegraph/go-diff"
go: finding google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96
go: finding github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac
go get: error loading module requirements

Looks like the lint and go-diff depdencies on some module need an update. I fixed it short-term with:

go mod edit -replace github.com/golang/lint=golang.org/x/lint@latest
go mod edit -replace sourcegraph.com/sourcegraph/go-diff@v0.5.1=github.com/sourcegraph/go-diff@v0.5.1

Seems like there are issues in the relevant repos too (sourcegraph/go-diff#34 and golang/lint#446).

@stanislas-m stanislas-m added the bug Something isn't working label Aug 31, 2019
@camstuart
Copy link
Contributor

Just ran into this myself. Thanks for the work around @jamtur01

markbates added a commit that referenced this issue Sep 10, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants