Skip to content

Commit 7e2e079

Browse files
committed
Remove exact "Numpy" version in "Invoke" tasks.
1 parent cb9e6ff commit 7e2e079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def virtualise(ctx, tests=True):
333333
ctx.run('virtualenv staging')
334334
with ctx.cd('{0}-*'.format(PYPI_PACKAGE_NAME)):
335335
ctx.run('pwd')
336-
ctx.run('{0} install numpy==1.13.3'.format(pip_binary))
336+
ctx.run('{0} install numpy'.format(pip_binary))
337337
ctx.run('{0} install -e .'.format(pip_binary))
338338
ctx.run('{0} install matplotlib'.format(pip_binary))
339339
ctx.run('{0} install nose'.format(pip_binary))

0 commit comments

Comments
 (0)