Commit 18fc9f76 authored by Stefan Behnel's avatar Stefan Behnel

Use a dedicated test requirements file for Py3.4/5.

parent b52f45ab
......@@ -52,9 +52,10 @@ echo "===================="
echo "Installing requirements [python]"
if [ -z "${PYTHON_VERSION##2.7}" ]; then
pip install -r test-requirements-27.txt || exit 1
elif [ -z "${PYTHON_VERSION##3.[45]*}" ]; then
python -m pip install -r test-requirements-34.txt || exit 1
elif [ -n "${PYTHON_VERSION##*-dev}" ]; then
python -m pip install -r test-requirements.txt $(if [ -z "${PYTHON_VERSION##3.[45]*}" ]; then echo "'numpy<1.19.0'"; fi) || exit 1
python -m pip install -r test-requirements.txt || exit 1
if [ "${PYTHON_VERSION##pypy*}" -a "${PYTHON_VERSION##3.[4789]*}" ]; then
python -m pip install -r test-requirements-cpython.txt || exit 1
......
numpy < 1.19.0
coverage
pycodestyle
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment