-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
Fix snappy version #46347
Fix snappy version #46347
Conversation
Should we also add |
Yes should be added to: actions-38.yaml And noted in |
6da73a7
to
030f028
Compare
@@ -72,6 +73,10 @@ def get_version(module: types.ModuleType) -> str: | |||
if module.__name__ == "brotli": | |||
# brotli doesn't contain attributes to confirm it's version | |||
return "" | |||
if module.__name__ == "snappy": | |||
# snappy doesn't contain attributes to confirm it's version |
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.
snappy.__version__
for me says "3.0.3"
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 you confusing it with https://snappy.math.uic.edu/?
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.
Yes, good catch!
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.
Awesome, thanks for alphabetizing too. LGTM
thanks @jonashaag |
Fix for #46260
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.