-
-
Notifications
You must be signed in to change notification settings - Fork 171
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
python-lz4 2.1 is broken, again #1929
Comments
So, it turns out (unsurprisingly) that python-lz4 has changed how it gets its version information yet again - I can't remember if it's 3rd or 4th time now. And when it doesn't get its version number, the whole library fails to load! For such a small and simple wrapper library, the number of releases and constant needless breakage is shocking. Here's what it does now: from pkg_resources import get_distribution, DistributionNotFound
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
pass And here's what I replaced it with to get on with more productive things:
Let's try to deal with this in #1883 so this won't break again next time there is an update. |
r20171 fixes the packaging for macos by adding the patch to jhbuild. |
For reference, here are some other instances of python-lz4 gratuitous breakage: #1464, #960 The import problem has been resolved, there were other reasons for avoiding pkg_resources: Importing lz4 is very slow We now use version 2.1.2: r20928. |
on win32 clean install:
The text was updated successfully, but these errors were encountered: