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 47fad80 commit 0076a89Copy full SHA for 0076a89
.circleci/config.yml
@@ -1,5 +1,5 @@
1
_machine_kwds: &machine_kwds
2
- image: circleci/classic:201710-02
+ image: circleci/classic:201808-01
3
4
_store_artifacts_kwds: &store_artifacts_kwds
5
path: /home/circleci/work/tests
@@ -356,6 +356,13 @@ jobs:
356
pip install dist/nipype-*-py2.py3-none-any.whl
357
# Futures should not install in Python 3
358
test $(pip show futures 2>/dev/null | wc -l) = "0"
359
+ - run:
360
+ name: Validate Python 3.7 installation
361
+ command: |
362
+ pyenv local 3.7.0
363
+ pip install dist/nipype-*-py2.py3-none-any.whl
364
+ # Futures should not install in Python 3
365
+ test "$(pip show numpy | grep Version)" \> "Version: 1.15.2"
366
- store_artifacts:
367
path: /home/circleci/nipype/dist
368
0 commit comments