# We need to add the livedeps packages location to sys.path so they can be discovered
# The site-packages path is derived from the running interpreter, because pip installs
# into lib/pythonX.Y/site-packages of the interpreter that built the dependencies.

import sys

sys.path.insert(
    0,
    f"/openedx/livedeps/deps/lib/python{sys.version_info.major}.{sys.version_info.minor}/site-packages",
)
