setup_venv: Add virtualenv as a dependency for Debian.

Apparently, this was missing on Xenial, and we just never noticed
because the package was installed by default on Ubuntu.

It doesn't exist yet in Trusty.
This commit is contained in:
Tim Abbott
2017-07-14 16:36:19 -07:00
parent 4906a47c1a
commit 680381c9d0

View File

@@ -134,6 +134,10 @@ APT_DEPENDENCIES = {
# tsearch-extras removed because there's no apt repository hosting it for Debian. # tsearch-extras removed because there's no apt repository hosting it for Debian.
# "postgresql-9.6-tsearch-extras", # "postgresql-9.6-tsearch-extras",
"postgresql-9.6-pgroonga", "postgresql-9.6-pgroonga",
# Technically, this should be in VENV_DEPENDENCIES, but it
# doesn't exist in trusty and we don't have a conditional on
# platform there.
"virtualenv",
], ],
"trusty": UBUNTU_COMMON_APT_DEPENDENCIES + [ "trusty": UBUNTU_COMMON_APT_DEPENDENCIES + [
"postgresql-9.3", "postgresql-9.3",