Skip to content

Commit 3261b8d

Browse files
committed
CI: Check python_requires blocks installation
1 parent facabc4 commit 3261b8d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.circleci/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,14 @@ 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 install 3.3.7
375+
pyenv local 3.3.7
376+
FAIL=false
377+
pip install dist/nipype-*-py2.py3-none-any.whl || FAIL=true
378+
$FAIL
371379
- store_artifacts:
372380
path: /home/circleci/nipype/dist
373381

0 commit comments

Comments
 (0)