zthumbor: Remove Python 2 residue.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-07-06 16:26:50 -07:00
committed by Anders Kaseorg
parent bd6fe786cf
commit 9900298315
12 changed files with 16 additions and 83 deletions

View File

@@ -21,7 +21,6 @@ VENV_DEPENDENCIES = [
"python3-dev", # Needed to install typed-ast dependency of mypy
"python3-pip",
"virtualenv",
"python3-six",
"libxml2-dev", # Used for installing talon and python-xmlsec
"libxslt1-dev", # Used for installing talon
"libpq-dev", # Needed by psycopg2
@@ -60,13 +59,11 @@ COMMON_YUM_VENV_DEPENDENCIES = [
REDHAT_VENV_DEPENDENCIES = COMMON_YUM_VENV_DEPENDENCIES + [
"python36-devel",
"python36-six",
"python-virtualenv",
]
FEDORA_VENV_DEPENDENCIES = COMMON_YUM_VENV_DEPENDENCIES + [
"python3-pip",
"python3-six",
"virtualenv", # see https://unix.stackexchange.com/questions/27877/install-virtualenv-on-fedora-16
]