From d9f31697082482337a38c0a738949d3d05ac9104 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 7 Jul 2023 14:25:57 +0200 Subject: [PATCH] Add missing pip packages --- .../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 9088db6..4949970 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt @@ -27,7 +27,7 @@ fun Prov.configureVenv(venvHome: String): ProvResult = task { fun Prov.installPybuilder(venvHome: String? = null): ProvResult = task { pipInstall("pybuilder ddadevops pypandoc mockito coverage unittest-xml-reporting deprecation" + - " python_terraform dda_python_terraform boto3 pyyaml ", + " python_terraform dda_python_terraform boto3 pyyaml mfa packaging", venvHome ) pipInstall("--upgrade ddadevops", venvHome)