We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent facabc4 commit 3261b8dCopy full SHA for 3261b8d
.circleci/config.yml
@@ -368,6 +368,14 @@ jobs:
368
pip install dist/nipype-*-py2.py3-none-any.whl
369
# Numpy should be upgraded to >= 1.15.3
370
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
379
- store_artifacts:
380
path: /home/circleci/nipype/dist
381
0 commit comments