-
Notifications
You must be signed in to change notification settings - Fork 250
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
Remove vendor proto files and use opencensus-proto instead. #596
Remove vendor proto files and use opencensus-proto instead. #596
Conversation
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. Now we can remove the code coverage exemption at https://github.com/census-instrumentation/opencensus-python/blob/master/.coveragerc#L8.
@@ -41,6 +41,7 @@ | |||
install_requires=[ | |||
'grpcio >= 1.0.0, < 2.0.0', | |||
'opencensus >= 0.4.dev0, < 1.0.0', | |||
'opencensus-proto >= 0.0.dev0, < 1.0.0', |
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.
FYI we've been replacing "dev" in the release branches. If opencensus-proto
follows the same versioning strategy the first release will be 0.1.0
and the version number on master after the release should be 0.2.dev0
, in which case this should be 0.1.dev0
.
@songy23 just realized there was a lint rule which we can get rid off. You can leave it to me since we'll move from flake8 to pylint, up to you. https://github.com/census-instrumentation/opencensus-python/blob/master/nox.py#L119 |
Got it, I'll leave it to you then because I'm putting this PR on hold until we made the next release for opencensus-proto (currently it's 0.0.dev0). |
b026c64
to
58dfe4d
Compare
census-instrumentation/opencensus-proto#197 is merged, now I think we can move forward with this PR. |
DO NOT MERGE until census-instrumentation/opencensus-proto#197 is merged and a new release is cut.Fixes #318.