From 42376c7e69b40b57c2df7c97d3d117cd1774cf54 Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 7 Jul 2022 13:08:20 +0200 Subject: [PATCH] Removed python3.8 from installPython3 Using python3 prefix uses latest python version for current distro. Ensures compatibility with later versions of Ubuntu. --- .../provs/desktop/infrastructure/Python.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt index 2f2f674..38c0b6c 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt @@ -16,7 +16,7 @@ fun Prov.provisionPython() = task { } fun Prov.installPython3(): ProvResult = task { - aptInstall("python3.8-venv python3-pip") + aptInstall("python3-venv python3-pip") } fun Prov.configureVenv(): ProvResult = task {