Skip to content

Commit

Permalink
Remove extraneous PYTHONPATH entry
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad committed Oct 26, 2023
1 parent 356284d commit d2887d4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions legate/driver/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from __future__ import annotations

import os
from pathlib import Path
from typing import TYPE_CHECKING

from .. import install_info
Expand Down Expand Up @@ -174,9 +173,6 @@ def _compute_env(self) -> tuple[EnvDict, set[str]]:
str(system.legion_paths.legion_jupyter_module)
)

# Make sure the base directory for this file is in the python path
extra_python_paths.append(str(Path(__file__).parents[1]))

env["PYTHONPATH"] = os.pathsep.join(extra_python_paths)

# If using NCCL prefer parallel launch mode over cooperative groups,
Expand Down

0 comments on commit d2887d4

Please sign in to comment.