-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
gh-132038: Make perf version check in test_perf_profiler more robust #132039
Conversation
Should work also if the version string includes a commit hash, like `perf version 6.12.9.g242e6068fd5c`
@@ -501,7 +501,7 @@ def _is_perf_version_at_least(major, minor): | |||
version = output.split()[2] | |||
version = version.split("-")[0] | |||
version = version.split(".") | |||
version = tuple(map(int, version)) | |||
version = tuple(map(int, version[:2])) |
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.
Perhaps add a note to the comment at the start of the function?
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.
done!
@itamaro backports? |
yeah we can backport to 3.13. not relevant to 3.12. |
Thanks @itamaro for the PR, and @AA-Turner for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
…obust (pythonGH-132039) Should work also if the version string includes a commit hash, like `perf version 6.12.9.g242e6068fd5c` (cherry picked from commit b6c92ec) Co-authored-by: Itamar Oren <[email protected]>
GH-132058 is a backport of this pull request to the 3.13 branch. |
Should work also if the version string includes a commit hash, like
perf version 6.12.9.g242e6068fd5c