mirror of https://github.com/zulip/zulip.git
setup_venv: Fix missing libssl-dev dependency.
We were already correctly including libssl-dev in Zulip's dependencies in development environment provisioning, but (at least now) it's needed to build certain Python packages like pycurl when building a Zulip virtualenv in production. I haven't investigated why we didn't need this on Ubuntu, but one possible reason would be that some other library in our dependencies list happens to depend on it on Ubuntu. We fix this by moving the dependency over to the shared VENV_DEPENDENCIES list. Fixes part of #9946.
This commit is contained in:
parent
8f9b5633b8
commit
3cc93fd721
|
@ -35,6 +35,7 @@ VENV_DEPENDENCIES = [
|
|||
"libxml2-dev", # Used for installing talon
|
||||
"libxslt1-dev", # Used for installing talon
|
||||
"libpq-dev", # Needed by psycopg2
|
||||
"libssl-dev", # Needed to build pycurl and other libraries
|
||||
]
|
||||
|
||||
codename = parse_lsb_release()["DISTRIB_CODENAME"]
|
||||
|
|
|
@ -125,7 +125,6 @@ UBUNTU_COMMON_APT_DEPENDENCIES = [
|
|||
"hunspell-en-us",
|
||||
"supervisor",
|
||||
"git",
|
||||
"libssl-dev",
|
||||
"yui-compressor",
|
||||
"wget",
|
||||
"ca-certificates", # Explicit dependency in case e.g. wget is already installed
|
||||
|
|
Loading…
Reference in New Issue