Merged
Changes from 1 commit
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
PrevPrevious commit
Next Next commit
TEST: Add pandas import check
  • Loading branch information
effigies authored and shnizzedy committedNov 18, 2024
commit 9096a5be85909d4570491c18c42629e17645efd3
Original file line numberDiff line numberDiff 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