8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ca916 commit c2321b0Copy full SHA for c2321b0
requirements-install.sh
@@ -5,14 +5,14 @@ if [[ $USE_OPTIONAL != "true" && $USE_OPTIONAL != "false" ]]; then
5
exit 1
6
fi
7
8
-pip install -r requirements-test.txt
+pip install -U -r requirements-test.txt
9
10
if [[ $USE_OPTIONAL == "true" ]]; then
11
if [[ $TRAVIS_PYTHON_VERSION == "pypy" || $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then
12
- pip install -r requirements-optional.txt
+ pip install -U -r requirements-optional.txt
13
elif [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then
14
- pip install -r requirements-optional-2.6.txt
+ pip install -U -r requirements-optional-2.6.txt
15
else
16
- pip install -r requirements-optional-cpython.txt
+ pip install -U -r requirements-optional-cpython.txt
17
18
0 commit comments