-
Notifications
You must be signed in to change notification settings - Fork 624
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
Build wheels from source dists #437
Conversation
Some operating systems (such as SUSE with py2pack) have an easier time packaging source distributions. Adding a check for the setup.py before attempting to build distributions.
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.
LGTM. I'm good with not merging in #433 and using this instead.
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.
LGTM
I think that would have been doable with some |
* feat(metrics): add registerMetric and getMetric functionality * fix: getTimeSeries and add more tests * fix: minor * fix: add JSDoc * fix: minor * fix: remove * fix: replace String -> string * fix: avoid casting * fix: use GAUGE_DOUBLE and COUNTER_DOUBLE type * fix: add ValueType to indicate type of the metric * fix: move ValueType.DOUBLE to DEFAULT_METRIC_OPTIONS * fix: use Number.isInteger * fix: log an error instead of throw error * fix: add more test and @todo comment * fix: link open-telemetry#474 isssue
Fixes #252
Follow up to #433. This replaces
setup.py bdist_wheel
withpip wheel
, but should produce the same artifacts. @Oberon00, @toumorokoshi, please sanity check me on this.