-
Notifications
You must be signed in to change notification settings - Fork 113
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
Incompatible With Glide Package Manager #50
Comments
Hey @armsnyder , it seems like other people are having similar problems with glide, like in this issue. Unfortunately there's not much I can do on my end, and I'm not really familiar with glide at all, but I'd recommend putting your two cents into that thread. Ultimately it's up to glide to properly support go modules. There's also this message on the glide README:
So maybe there's not much they'll do either, you might have to just migrate to dep =/ Gonna go ahead and close this, sorry I couldn't be more helpful here. |
Makes sense. Thanks for reading. |
@mediocregopher I think I'm having a similar issue with
Any suggestions? Things worked fine with |
@jemartti once again there's not much I can do here, the package supports the builtin module system, and there's not much which I can do to support dependency managers which don't support that system. You can try contacting the maintainers of dep and see if they can help you. Sorry to not be much help. |
maybe you can restore the radix.v3 repo with the original code that was working instead of breaking every existing project that was relying on this code |
I'm working on a project which uses Glide for Go package management.
In my
glide.yml
I have:When I run
glide update
I get an error:For now I have worked around this by adding these additional lines to my
glide.yml
:However, by doing this, I am now unable to use any types from the
resp
package, which means I can't do any custom marshaling/unmarshaling. If I try using one of these types, I get Go compilation errors. For example, this is what I get when I try to mock a Conn type using gomock:So it looks like ignoring those resp packages in my glide.yml is not the correct approach. I'm not super familiar with Go's new module system, but I think that's related to the issue here. I was not able to find literature online about Glide + Go modules.
Is there a recommended way of using radix with Glide?
I have also tried these other variations of my glide.yml but to no avail.
The text was updated successfully, but these errors were encountered: