You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, users are unable to run aldryn-search due to dependency conflict with django package.
As shown in the following full dependency graph of aldryn-search, django-appconf requires django,while django-cms requires django>=1.11,<2.2.
According to pip’s “first found wins” installation strategy, django 2.2.4 is the actually installed version.
However, django 2.2.4 does not satisfy django>=1.11,<2.2.
Add django>=1.11,<2.2 into requirement file as a direct dependency of aldryn-search.
Reverse the declaration order of django-appconf and django-cms in requirement file to allow django-cms to be installed first. Then this conflict can be removed.
Which solution do you prefer, 1 or 2? @czpython Please let me know your choice. I can submit a PR to solve this issue.
Hi, users are unable to run aldryn-search due to dependency conflict with django package.
As shown in the following full dependency graph of aldryn-search, django-appconf requires django,while django-cms requires django>=1.11,<2.2.
According to pip’s “first found wins” installation strategy, django 2.2.4 is the actually installed version.
However, django 2.2.4 does not satisfy django>=1.11,<2.2.
Dependency tree
Thanks for your help.
Best,
Neolith
The text was updated successfully, but these errors were encountered: