-
Notifications
You must be signed in to change notification settings - Fork 187
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
image.py: fix old-style(?) relative import statement #366
Conversation
Just to make sure that this doesn't break again, I'll add an import for image to the tests. |
2 similar comments
Thanks! |
Thanks @henryiii ! Can I request a (point) release for this one? It's blocking my install in production. |
Sure. I’m traveling for Christmas so might not be immediate. I’d like to fix the slow load/added requirement from the translation addition too. ~1 week? |
That would be marvellous. Thanks! Let me know if I can help. |
Done, github and pypi are one 1.6.5, and conda-forge should follow soon. |
This fixes #365. I can't actually find when this syntax became illegal, but this replacement works both in Python 2.7 and 3.6 whereas the original doesn't.
As I wrote in #365, this patch unbreaks installs under versions of
pip
that have a hard dependency on thepy->pyc
step succeeding.