File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -339,20 +339,22 @@ jobs:
339
339
- run :
340
340
name : Check pypi preconditions
341
341
command : |
342
- pip install --upgrade twine future wheel readme_renderer setuptools
342
+ pip install --upgrade pip twine future wheel readme_renderer setuptools
343
343
python setup.py check -r -s
344
344
python setup.py sdist bdist_wheel
345
345
- run :
346
346
name : Validate Python 2 installation
347
347
command : |
348
348
pyenv local 2.7.12
349
+ pip install --upgrade pip
349
350
pip install dist/nipype-*-py2.py3-none-any.whl
350
351
# Futures should install in Python 2
351
352
pip show futures 2>/dev/null | grep "Name: futures"
352
353
- run :
353
354
name : Validate Python 3 installation
354
355
command : |
355
356
pyenv local 3.5.2
357
+ pip install --upgrade pip
356
358
pip install dist/nipype-*-py2.py3-none-any.whl
357
359
# Futures should not install in Python 3
358
360
test $(pip show futures 2>/dev/null | wc -l) = "0"
You can’t perform that action at this time.
0 commit comments