Skip to content

Commit 7bfff48

Browse files
committed
Test on min versions of all deps, not just six
1 parent 54f03df commit 7bfff48

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cache:
1616
env:
1717
- USE_OPTIONAL=true
1818
- USE_OPTIONAL=false
19-
- SIX_VERSION=1.9 USE_OPTIONAL=true
19+
- DEP_VERSION=min USE_OPTIONAL=true
2020

2121
install:
2222
- ./requirements-install.sh

requirements-install.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
pip install pip==6.1.0
44

5+
if [[ $DEP_VERSION == "min" ]]; then
6+
sed -i'' -e 's/>=/==/g' requirements*.txt
7+
fi
8+
59
pip install -U -r requirements-test.txt
610

711
if [[ $USE_OPTIONAL == "true" ]]; then
812
pip install -U -r requirements-optional.txt
913
fi
1014

11-
if [[ $SIX_VERSION ]]; then
12-
pip install six==$SIX_VERSION
13-
fi
14-
1515
if [[ $CI == "true" ]]; then
16-
pip install -U codecov
16+
pip install codecov
1717
fi

0 commit comments

Comments
 (0)