File size: 316 Bytes
a03b3ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash -eu
cd "$(dirname ${0})/.."
source scripts/helpers.sh
pip_required
echo "Creating test requirements...
To match the CI environment, this script should be run from a Unix-like system in Python 3.7."
cd test
pip install --upgrade pip-tools
pip-compile requirements.in --output-file requirements-37.txt
|