-
Notifications
You must be signed in to change notification settings - Fork 62
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
chore: allow --api-path as option to generate cmd and generate per api/majorversion #3712
Changes from all commits
35967ef
d1c6801
39cd5ea
6858033
bb6cae6
2053749
2911ffd
7b637c4
d68329d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,21 @@ def find_versioned_proto_path(proto_path: str) -> str: | |
idx = proto_path.find(version) | ||
return proto_path[:idx] + version | ||
return proto_path | ||
|
||
|
||
def ends_with_version(proto_path: str) -> bool: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need a setter method? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure I get what you are referring by "setter method"? If it is a typo and you are asking about this method, it is used here to account for cases where dependencies like /type are included as proto-path (e.g., accesscontextmanager) That said, the exact logic may change in followup PRs as we have a slight change in design, and I have an related incoming PR that may change GenerationConfig.libraries from a list to dict. |
||
""" | ||
Checks if a given proto_path string ends with a version identifier. | ||
|
||
:param proto_path: The proto_path string to check. | ||
|
||
:return: | ||
True if the proto_path ends with a version, False otherwise. | ||
""" | ||
version_regex = re.compile(r"^v[1-9].*") | ||
parts = proto_path.rsplit("/", 1) | ||
if len(parts) > 1: | ||
last_part = parts[1] | ||
else: | ||
last_part = parts[0] | ||
return bool(version_regex.match(last_part)) |
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.
Are there any logical change in this method?
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.
No, only moved so it can be called as
GenerationConfig.from_yaml()
. Provides better readability imo.