Wednesday 12 July 2017

Re: The transition to add support for Python 3.6 is beginning

On Jul 12, 2017, at 09:03 PM, Michael Hudson-Doyle wrote:

>> https://bitbucket.org/ambv/configparser/issues/17/#comment-36669436
>
>Well they both do this:
>
>try:
> import pkg_resources
> pkg_resources.declare_namespace(__name__)
>except ImportError:
> import pkgutil
> __path__ = pkgutil.extend_path(__path__, __name__)
>
>But both python3-lazr.delegates and python3-lazr.config Depend: on
>python3-pkg-resources, so the ImportError case should never occur...

So that's probably not what's going on. :(

-Barry