Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow setting CWD of Python subprocess #373

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions compiler/src/main/scala/edg/compiler/PythonInterface.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ trait ProtobufInterface {

class ProtobufStdioSubprocess(
interpreter: String = "python",
cwd: Option[File] = None,
pythonPaths: Seq[String] = Seq()
) extends ProtobufInterface {
private val submoduleSearchPaths = if (pythonPaths.nonEmpty) pythonPaths else Seq(".")
Expand All @@ -83,6 +84,7 @@ class ProtobufStdioSubprocess(
case Some(envPythonPath) => env.put("PYTHONPATH", envPythonPath + ";" + pythonPathString)
}
}
cwd.foreach(cwd => processBuilder.directory(cwd))
processBuilder.start()
}

Expand Down
Binary file modified edg/core/resources/edg-compiler-precompiled.jar
Binary file not shown.
Loading