-
Notifications
You must be signed in to change notification settings - Fork 190
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
Can't use go get -u on this module with its current latest pseudo-version #151
Comments
Seems to be an issue with how go modules interprets modules whose names have changed (github.com/x/lint and golang.org/x/lint). Tracking discussion in golang/go#30831. |
Since this is a core issue and affects anyone depending on x/lint, I'm closing this in favour of golang/go#30831. |
@jadekler while we are waiting for a resoluton, do you mind updating your go.mod to point to the latest |
@xomaczar What specific error are you seeing, and what version of There has been progress in other related issues. See googleapis/google-api-go-client#342 (comment) for example. You might need to manually change one or more versions in your |
@xomaczar Also, do the steps initially reported in #151 (comment) work for you, or do those exact steps listed there still give you a |
+1, I'd also like to know if there are specific issues related to grpc at the moment. |
This module is currently affected by an issue similar to openzipkin/zipkin-go#114. It can be reproduced with Go 1.12 as follows:
To resolve this for this repository, its go.mod file needs to be updated to include newer versions of dependencies, in order to avoid pulling in older module versions that cause this conflict.
I haven't looked into the exact cause for this repo yet. It might be just a matter of waiting for golang/go#30833 to be resolved. I'll investigate more later.
/cc @broady @bcmills
The text was updated successfully, but these errors were encountered: