Skip to content

Commit 0076a89

Browse files
committed
CI: Test Numpy version under Python 3.7
1 parent 47fad80 commit 0076a89

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_machine_kwds: &machine_kwds
2-
image: circleci/classic:201710-02
2+
image: circleci/classic:201808-01
33

44
_store_artifacts_kwds: &store_artifacts_kwds
55
path: /home/circleci/work/tests
@@ -356,6 +356,13 @@ jobs:
356356
pip install dist/nipype-*-py2.py3-none-any.whl
357357
# Futures should not install in Python 3
358358
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"
359366
- store_artifacts:
360367
path: /home/circleci/nipype/dist
361368

0 commit comments

Comments
 (0)