provision: Use generic python3 on Fedora dependencies.

It might be cleaner to add new variables in setup_venv.py, but we can
do that later.
This commit is contained in:
rht
2018-12-17 19:52:29 +00:00
committed by Tim Abbott
parent 55c1a2e525
commit 75134ef614
2 changed files with 11 additions and 6 deletions

View File

@@ -45,19 +45,16 @@ VENV_DEPENDENCIES = [
"jq", # Used by scripts/lib/install-node to check yarn version
]
YUM_VENV_DEPENDENCIES = [
COMMON_YUM_VENV_DEPENDENCIES = [
"libffi-devel",
"freetype-devel",
"zlib-devel",
"libjpeg-turbo-devel",
"openldap-devel",
"libmemcached-devel",
"python34-devel",
"python-devel",
"python34-pip",
"python2-pip",
"python-virtualenv",
"python34-six",
"python-six",
"libxml2-devel",
"libxslt-devel",