Skip to content

Commit 3e76374

Browse files
committed
CI: Check python_requires blocks installation
1 parent facabc4 commit 3e76374

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.circleci/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,13 @@ jobs:
368368
pip install dist/nipype-*-py2.py3-none-any.whl
369369
# Numpy should be upgraded to >= 1.15.3
370370
test "$(pip show numpy | grep Version)" \> "Version: 1.15.2"
371+
- run:
372+
name: Check python_requires prevents installation on Python 3.3
373+
command: |
374+
pyenv local 3.3.6
375+
FAIL=false
376+
pip install dist/nipype-*-py2.py3-none-any.whl || FAIL=true
377+
$FAIL
371378
- store_artifacts:
372379
path: /home/circleci/nipype/dist
373380

0 commit comments

Comments
 (0)