Skip to content

Commit 9a6e7cb

Browse files
committed
remove install_aliases
1 parent b5f8537 commit 9a6e7cb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

nipype/interfaces/tests/test_io.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ def test_s3datagrabber():
147147
"node_output": ["model"]
148148
}),
149149
])
150-
def test_selectfiles(SF_args, inputs_att, expected):
150+
def test_selectfiles(tmpdir, SF_args, inputs_att, expected):
151+
tmpdir.chdir()
151152
base_dir = op.dirname(nipype.__file__)
152153
dg = nio.SelectFiles(base_directory=base_dir, **SF_args)
153154
for key, val in inputs_att.items():

nipype/pipeline/engine/base.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,11 @@
2121
from copy import deepcopy
2222
import re
2323
import numpy as np
24-
from future import standard_library
2524

2625
from ... import config
2726
from ...interfaces.base import DynamicTraitedSpec
2827
from ...utils.filemanip import loadpkl, savepkl
2928

30-
standard_library.install_aliases()
31-
3229

3330
class EngineBase(object):
3431
"""Defines common attributes and functions for workflows and nodes."""

0 commit comments

Comments
 (0)