-
-
Notifications
You must be signed in to change notification settings - Fork 38
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
Doesn't work with Python 2.6 #22
Comments
Yes, check-manifest currently does not support Python 2.6. The Python version classifiers in setup.py should make that clear. I'm not opposed to adding Python 2.6 support. Would you like to submit a pull request? The tarfile error can be worked around by using |
Okay, I just added Python 2.6 support without fixing the tarfile issue. My tests are incomplete :/ |
This time while we're dealing with zip archives. Fixes #22 harder. I wonder how many other latent bugs are still lurking, thanks to the less-than-stellar test coverage?
check-manifest 0.18 is out with this fix. |
According to docs,
TarFile
only supports context manager protocol since 2.7, so that on 2.6check-manifest
crashes withAttributeError: 'TarFile' object has no attribute '__exit__'
The text was updated successfully, but these errors were encountered: