AdvancedQuery for plone6

when starting up a coredev buildout using the 6.0 branch, i get the following error

  File "/home/frisi/.buildout/eggs/Products.AdvancedQuery-4.2-py3.8.egg/Products/AdvancedQuery/eval/__init__.py", line 14, in <module>
    from Products.ZCatalog.Lazy import LazyCat, LazyMap
ModuleNotFoundError: No module named 'Products.ZCatalog.Lazy'

@dieter are there any plans to make this addon work under plone6?
happy to test a branch (if available)

Lazy was moved to ZTUtils. Replace the import and run the tests.

In the long term definitely -- but not for the moment.

As AdvancedQuery is pure backend, I do not expect big changes (but mostly cosmetics such as adaptations to module moves).
Maybe, you would like to help with patches.

thanks for your fast reply @dieter .

tests pass after fixing a single import line and replacing
from Products.ZCatalog.Lazy import
with
from ZTUtils.Lazy import