newer versions of pip/setuptools are now confused by the old-style namespace packages.
i previously tried to migrate to the implicit style namespace packages, but the problem with that i don't think there's a way to do that this not backwards incompatible.
specifically, i don't see how you could use the implicit style namespaces and have something like from dedupe import Dedupe work.
you could do from dedupe.api import Dedupe but that's not what we have guaranteed.
so, then maybe we have to move to the src-layout
newer versions of pip/setuptools are now confused by the old-style namespace packages.
i previously tried to migrate to the implicit style namespace packages, but the problem with that i don't think there's a way to do that this not backwards incompatible.
specifically, i don't see how you could use the implicit style namespaces and have something like
from dedupe import Dedupework.you could do
from dedupe.api import Dedupebut that's not what we have guaranteed.so, then maybe we have to move to the src-layout