-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Use PyData Sphinx theme version switcher #46936
Changes from all commits
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 |
---|---|---|
|
@@ -1261,6 +1261,7 @@ def pregenerate_example_rsts( | |
repo_url = "https://github.com/ray-project/ray.git" | ||
static_dir_name = "_static" | ||
version_json_filename = "versions.json" | ||
dereference_suffix = "^{}" | ||
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 missed this change before - do we need these to be defined at the module level and not in the function that uses them? We really don't want to pollute the module namespace if we can avoid it, and as far as I can tell these are only being used in 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. Will raise a follow up PR to address this since this one got merged. Thanks! |
||
|
||
|
||
def generate_version_url(version): | ||
|
@@ -1286,11 +1287,11 @@ def generate_versions_json(): | |
"utf-8" | ||
) | ||
# Extract release versions from tags | ||
tags = re.findall(r"refs/tags/(.+?)(?:\^|\s|$)", output) | ||
tags = re.findall(r"refs/tags/(.+)", output) | ||
for tag in tags: | ||
if ray_prefix in tag: | ||
if ray_prefix in tag and dereference_suffix not in tag: | ||
version = tag.split(ray_prefix)[1] | ||
if Version(version) >= Version(min_version): | ||
if version not in git_versions and Version(version) >= Version(min_version): | ||
git_versions.append(version) | ||
git_versions.sort(key=Version, reverse=True) | ||
|
||
|
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.
Might want to use a relative unit here so it scales with the user's font size.