Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,8 @@ public static class Builder implements Supplier<PythonRewriteRpc> {
// Default to looking for a venv python, falling back to system python
private Path pythonPath = findDefaultPythonPath();
private @Nullable Path log;
private @Nullable Path pipPackagesPath;
private @Nullable Path pipPackagesPath = Paths.get(
System.getProperty("java.io.tmpdir"), "openrewrite-python-packages");
private @Nullable Path recipeInstallDir;

private static Path findDefaultPythonPath() {
Expand Down
Loading