-
Notifications
You must be signed in to change notification settings - Fork 8
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
Wagtail 2.10 compatability? #21
Comments
I will later work on this but PR is also welcome!
Thx. |
Thanks for the response! If I have time I will shoot for a PR, as for item 3. I have had no issues using wagtail-whoosh with 2.9 or 2.10 so far, are there any issues that you are immediately aware of that I should look at if I attempt to patch wagtail-whoosh for 2.10? Thanks! |
If you want to make it work with Wagtail 2.10, you can check Thx. |
I think i figured at least one incompatibility out, wagtail 2.9+ adds phrase based searching. |
Thanks for your work! I will leave this issue open and work on it later. |
Hej, thanks for your great work. |
Whoosh's way of searching for phrases when using its query language is double-quoting the terms. But when I add if isinstance(query, Phrase):
return " \"{}\" ".format(query.query_string) to I think the reason is that Wagtail defines an Not sure how to fix it, though, as I don't know much about search engines. I suppose we need a fix either in Whoosh (support the |
Hi @michael-yin, |
Hey everyone,
Any plans to update this package to be compatible with 2.10? Ive been using it with 2.9 and now 2.10 with no issues, but with the new pip dependency resolver coming out soon, I wont be able to keep installing a technically incompatible version. Is checking compatibility and potentially updating the required wagtail version to be Wagtail<2.10,>=2.3 something I could help with?
The text was updated successfully, but these errors were encountered: