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 54f03df commit 7bfff48Copy full SHA for 7bfff48
.travis.yml
@@ -16,7 +16,7 @@ cache:
16
env:
17
- USE_OPTIONAL=true
18
- USE_OPTIONAL=false
19
- - SIX_VERSION=1.9 USE_OPTIONAL=true
+ - DEP_VERSION=min USE_OPTIONAL=true
20
21
install:
22
- ./requirements-install.sh
requirements-install.sh
@@ -2,16 +2,16 @@
2
3
pip install pip==6.1.0
4
5
+if [[ $DEP_VERSION == "min" ]]; then
6
+ sed -i'' -e 's/>=/==/g' requirements*.txt
7
+fi
8
+
9
pip install -U -r requirements-test.txt
10
11
if [[ $USE_OPTIONAL == "true" ]]; then
12
pip install -U -r requirements-optional.txt
13
fi
14
-if [[ $SIX_VERSION ]]; then
- pip install six==$SIX_VERSION
-fi
-
15
if [[ $CI == "true" ]]; then
- pip install -U codecov
+ pip install codecov
0 commit comments