Skip to content

Commit

Permalink
TEST: Add pandas import check
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies authored and shnizzedy committed Nov 18, 2024
1 parent cd02cb9 commit 8673fdb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nipype/pipeline/plugins/tests/test_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
import nipype.interfaces.utility as niu
import nipype.pipeline.engine as pe

try:
import pandas
has_pandas = True
except ImportError:
has_pandas = False

def func():
return
Expand Down

0 comments on commit 8673fdb

Please sign in to comment.