Skip to content

Commit dcf1208

Browse files
committed
CI: Update pip to respect python_requires
1 parent b1b56ef commit dcf1208

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -339,20 +339,22 @@ jobs:
339339
- run:
340340
name: Check pypi preconditions
341341
command: |
342-
pip install --upgrade twine future wheel readme_renderer setuptools
342+
pip install --upgrade pip twine future wheel readme_renderer setuptools
343343
python setup.py check -r -s
344344
python setup.py sdist bdist_wheel
345345
- run:
346346
name: Validate Python 2 installation
347347
command: |
348348
pyenv local 2.7.12
349+
pip install --upgrade pip
349350
pip install dist/nipype-*-py2.py3-none-any.whl
350351
# Futures should install in Python 2
351352
pip show futures 2>/dev/null | grep "Name: futures"
352353
- run:
353354
name: Validate Python 3 installation
354355
command: |
355356
pyenv local 3.5.2
357+
pip install --upgrade pip
356358
pip install dist/nipype-*-py2.py3-none-any.whl
357359
# Futures should not install in Python 3
358360
test $(pip show futures 2>/dev/null | wc -l) = "0"

0 commit comments

Comments
 (0)