File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ before_install:
94
94
- source venv/bin/activate
95
95
- python3 --version # just to check
96
96
- travis_retry python3 -m pip install -U $SETUP_REQUIRES
97
+ - which python3
98
+ - which pip
97
99
- |
98
100
if [ "$INSTALL_TYPE" == "sdist" ]; then
99
101
python3 setup.py egg_info # check egg_info while we're here
@@ -106,15 +108,15 @@ before_install:
106
108
export ARCHIVE="package.tar.gz"
107
109
git archive -o $ARCHIVE HEAD
108
110
fi
109
- - if [ -n "$DEPENDS" ]; then python3 -m pip install $EXTRA_PIP_FLAGS $DEPENDS; fi
111
+ - if [ -n "$DEPENDS" ]; then pip install $EXTRA_PIP_FLAGS $DEPENDS; fi
110
112
111
113
# command to install dependencies
112
114
install :
113
115
- |
114
116
if [ "$INSTALL_TYPE" == "setup" ]; then
115
117
python3 setup.py install
116
118
else
117
- python3 -m pip install $EXTRA_PIP_FLAGS $ARCHIVE
119
+ pip install $EXTRA_PIP_FLAGS $ARCHIVE
118
120
fi
119
121
# Basic import check
120
122
- python3 -c 'import nibabel; print(nibabel.__version__)'
You can’t perform that action at this time.
0 commit comments