Skip to content

Commit c5188ec

Browse files
committed
Update packages even if they're installed on Travis already.
1 parent c1736e3 commit c5188ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

requirements-install.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ if [[ $USE_OPTIONAL != "true" && $USE_OPTIONAL != "false" ]]; then
55
exit 1
66
fi
77

8-
pip install -r requirements-test.txt
8+
pip install -U -r requirements-test.txt
99

1010
if [[ $USE_OPTIONAL == "true" ]]; then
1111
if [[ $TRAVIS_PYTHON_VERSION == "pypy" || $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then
12-
pip install -r requirements-optional.txt
12+
pip install -U -r requirements-optional.txt
1313
elif [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then
14-
pip install -r requirements-optional-2.6.txt
14+
pip install -U -r requirements-optional-2.6.txt
1515
else
16-
pip install -r requirements-optional-cpython.txt
16+
pip install -U -r requirements-optional-cpython.txt
1717
fi
1818
fi

0 commit comments

Comments
 (0)