-
Notifications
You must be signed in to change notification settings - Fork 23
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
Support Go modules #5
base: master
Are you sure you want to change the base?
Conversation
2230cb4
to
c491c22
Compare
.travis.yml
Outdated
@@ -1,7 +1,7 @@ | |||
sudo: false | |||
language: go | |||
go: | |||
- 1.7 | |||
- 1.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From https://github.com/prometheus/client_golang/#prometheus-go-client-library:
This library requires Go1.9 or later.
c491c22
to
202fee9
Compare
Signed-off-by: Simon Pasquier <[email protected]>
5475a4f
to
ea44f44
Compare
@mwitkow friendly ping |
ping @mwitkow ptal 🤗 |
- "1.9.x" | ||
- "1.10.x" | ||
- "1.11.x" | ||
- "1.12.x" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need to use quotes if you add .x
. :)
Related to #4
github.com/prometheus/common
(and many of the other Prometheus projects) depends on this library and already support Go modules. It would be nice to have for us...