mirror of https://github.com/zulip/zulip.git
26 lines
995 B
Bash
Executable File
26 lines
995 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Check if zulip-.*venv in particular has been installed
|
|
# It is sufficient to check just for /srv/zulip-py3-venv because it must be
|
|
# present in both cases of py2 and py3
|
|
if [ ! -d /srv/zulip-py3-venv ]; then
|
|
./tools/setup/setup_venvs.py
|
|
fi
|
|
|
|
source /srv/zulip-venv/bin/activate # Activate python2 virtualenv
|
|
pip-compile --output-file requirements/py2_common_lock.txt requirements/py2_common.txt
|
|
# Remove the editable flag in the lock file for safer build
|
|
sed -i 's/-e //' requirements/py2_common_lock.txt
|
|
deactivate
|
|
|
|
source /srv/zulip-py3-venv/bin/activate # Activate python3 virtualenv
|
|
pip-compile --output-file requirements/py3_common_lock.txt requirements/py3_common.txt
|
|
# Remove the editable flag in the lock file for safer build
|
|
sed -i 's/-e //' requirements/py3_common_lock.txt
|
|
# pip-tools bug; future, futures are obsolete in python3
|
|
sed -i '/futures==/d' requirements/py3_common_lock.txt
|
|
sed -i '/future==/d' requirements/py3_common_lock.txt
|
|
|
|
deactivate
|