Gitea sdk problems

I tried to add the gitea sdk to my go.mod file but when I try to download the dependencies I get the following error:

go: code.gitea.io/sdk/gitea@v0.0.0-20190802154435-bbad0d915e44 requires
    code.gitea.io/gitea@v1.10.0-dev.0.20190711052757-a0820e09fbf7 requires
    github.com/go-macaron/cors@v0.0.0-20190309005821-6fd6a9bfe14e9: invalid pseudo-version: revision is longer than canonical (6fd6a9bfe14e)

Any ideas?

I’m guessing you are trying to do this with golang1.13 which was recently released. We have resolved this in the development version of Gitea, which will soon become the stable release.

Currently this is a problem. And I have sent a PR https://gitea.com/gitea/go-sdk/pulls/188 to fix that.

@techknowlogick @lunny thanks for the response. So I’ll just wait or use dep for now, because it works there