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
I've been trying to verify this fix with my own identical fix in myria-ec2-ansible, but haven't managed to get it working. This suggests that the problem is additional code in myria/__init__.py:
You must NOT include any other code and data in a namespace package’s init.py. Even though it may appear to work during development, or when projects are installed as .egg files, it will not work when the projects are installed using “system” packaging tools – in such cases the init.py files will not be installed, let alone executed.
Currently
myria-cluster
conflicts withmyria-python
because both packages define modules in the same root namespacemyria
. The solution should be for both packages to add the "namespace package"myria
to their package metadata: http://setuptools.readthedocs.io/en/latest/setuptools.html#namespace-packages.This requires that all packages sharing the same "root namespace" separately declare it in
setup.py
as a "namespace package":In the
__init__.py
corresponding to the namespace package:The text was updated successfully, but these errors were encountered: