This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
"panic: version queue is empty, should not happen" while trying to use "develop" branch of "github.com/gin-gonic/gin" #776
Comments
Seems like the root problem is that https://github.com/gin-contrib/sse doesn't have any tags or branches with version names. dep isn't handling gopkg.in's Version Zero correctly, which should resolve to the default branch. |
I'm going to work on this (and #777) as they are both related to how we sort/resolve gopkg.in versions. |
@carolynvs Is this resolved by #1053? |
Nice catch, yes it has!
|
phew, I saw this come up in my notifications and thought we had a regression 😅 |
I screwed up validating this was fixed (I used github.com instead of gopkg.in in the import path). Reopening... |
hi there, |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
What version of Go (
go version
) anddep
(git describe --tags
) are you using?Description
I first run
dep init -v
. Here the files:dep init -v
Dep automatically choose the default branch of Gin project (
master
), but I needdevelop
. So I changedGopkg.toml
from:To:
Then I runned
dep ensure
and got the panic.dep ensure -v
The text was updated successfully, but these errors were encountered: