From cac8fa4eedb6f9e174f4238c10ec90f014872ba3 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Wed, 12 Aug 2020 17:29:44 -0700 Subject: [PATCH] shouldn't need virtualenv on rhel --- tests/letstest/scripts/bootstrap_os_packages.sh | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/tests/letstest/scripts/bootstrap_os_packages.sh b/tests/letstest/scripts/bootstrap_os_packages.sh index 3adc2810c..d30027e40 100755 --- a/tests/letstest/scripts/bootstrap_os_packages.sh +++ b/tests/letstest/scripts/bootstrap_os_packages.sh @@ -159,21 +159,11 @@ BootstrapRpmPython3Legacy() { } BootstrapRpmPython3() { - # Tested with: - # - Fedora 29 - InitializeRPMCommonBase - # Fedora 29 must use python3-virtualenv - if $TOOL list python3-virtualenv >/dev/null 2>&1; then - python_pkgs="python3 - python3-virtualenv - python3-devel - " - else - error "No supported Python package available to install. Aborting bootstrap!" - exit 1 - fi + python_pkgs="python3 + python3-devel + " BootstrapRpmCommonBase "$python_pkgs" }