mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
20 lines
871 B
Python
20 lines
871 B
Python
"""
|
|
Use libraries from a virtualenv (by modifying sys.path) in production.
|
|
"""
|
|
import os
|
|
import sys
|
|
|
|
|
|
def setup_path() -> None:
|
|
if os.path.basename(sys.prefix) != "zulip-py3-venv":
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
venv = os.path.join(BASE_DIR, "zulip-py3-venv")
|
|
activate_this = os.path.join(venv, "bin", "activate_this.py")
|
|
activate_locals = dict(__file__=activate_this)
|
|
exec(open(activate_this).read(), activate_locals)
|
|
# Check that the python version running this function
|
|
# is same as python version that created the virtualenv.
|
|
python_version = "python{}.{}".format(*sys.version_info[:2])
|
|
if not os.path.exists(os.path.join(venv, 'lib', python_version)):
|
|
raise RuntimeError(venv + " was not set up for this Python version")
|