mirror of
https://github.com/zulip/zulip.git
synced 2025-10-27 10:03:56 +00:00
setup_venv: Add missing build essential dependencies.
Apparently, c74a74dc74 introduced a bug
where we are no longer correctly depending on build-essential as part
of the Zulip development environment installation process.
Fixes #1111.
This commit is contained in:
@@ -18,6 +18,7 @@ if False:
|
|||||||
from typing import List, Optional
|
from typing import List, Optional
|
||||||
|
|
||||||
VENV_DEPENDENCIES = [
|
VENV_DEPENDENCIES = [
|
||||||
|
"build-essential",
|
||||||
"libffi-dev",
|
"libffi-dev",
|
||||||
"libfreetype6-dev",
|
"libfreetype6-dev",
|
||||||
"libldap2-dev",
|
"libldap2-dev",
|
||||||
@@ -25,6 +26,7 @@ VENV_DEPENDENCIES = [
|
|||||||
"postgresql-server-dev-all",
|
"postgresql-server-dev-all",
|
||||||
"python3-dev", # Needed to install typed-ast dependency of mypy
|
"python3-dev", # Needed to install typed-ast dependency of mypy
|
||||||
"python-dev",
|
"python-dev",
|
||||||
|
"python-pip",
|
||||||
"python-virtualenv",
|
"python-virtualenv",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user