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
Is your feature request related to a problem? Please describe.
The bazel python ruleset relies on the standards for laying out name space packages. The existing setup doesn't follow that as such it is not possible to have both the core and the eval packages in the same bazel managed code based Describe the solution you'd like
Ensure that top level packages have no __init__.py files or include the __path__ = __import__('pkgutil').extend_path(__path__, __name__) in the init.py files
Is your feature request related to a problem? Please describe.
The bazel python ruleset relies on the standards for laying out name space packages. The existing setup doesn't follow that as such it is not possible to have both the core and the eval packages in the same bazel managed code based
Describe the solution you'd like
Ensure that top level packages have no
__init__.py
files or include the__path__ = __import__('pkgutil').extend_path(__path__, __name__)
in the init.py filesAdditional context
Similar issue was reported previously
Arize-ai/openinference#398
The text was updated successfully, but these errors were encountered: