mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-25 21:49:54 +08:00
10 lines
218 B
Bash
Executable file
Vendored
10 lines
218 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
# PIP deps installer
|
|
set -e
|
|
set -x
|
|
|
|
pip install $CI_PIP_DEPS
|
|
pip install \
|
|
-r requirements-optional.txt \
|
|
-r ci/requirements-${CI_REQUIREMENTS}.txt \
|
|
-r ci/requirements-${CI_DATABASE:-sqlite}.txt
|