-
Notifications
You must be signed in to change notification settings - Fork 323
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
svglib dependency is missing #602
Comments
Some users of easy-thumbnails complained, that they do not need SVG support and thus don't want to pull in the extra dependency |
We have the same problem.
|
Instead you should just add
to your |
(I'd suggest if we're changing core requirements / making breaking changes in the future, we use a major version bump) |
I'm getting a missing dep error with a fresh install of 2.8.2;
simply trying to render a template manually;
This is from following the README. When i |
Ok, Jacob, but now even |
So this should be fixed by upgrading to 2.8.3. Sorry again :) |
Thx budy, much love to the OS maintainers round the world! |
After updating my project with
pip-compile
andpip-sync
easy-thumbnails
is bumped to 2.8.2 andsvglib
removed:This leads to an error because in
VIL/Image.py
there’s an import fromsvglib
:Adding
svglib
torequirements.in
and runningpip-compile && pip-sync
fixes the problem, but the dependencies ineasy-thumbnails
should be fixed.The text was updated successfully, but these errors were encountered: