Skip to content

Commit 4c0835f

Browse files
committed
REF: Handle absence/presence of tzinfo
1 parent 8329d08 commit 4c0835f

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

nipype/info.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,11 @@ def get_nipype_gitversion():
9999
"""
100100

101101
# versions
102-
NIBABEL_MIN_VERSION = "2.1.0"
103-
NETWORKX_MIN_VERSION = "2.0"
104-
NUMPY_MIN_VERSION = "1.17"
105-
NUMPY_MAX_VERSION = "2.0"
106-
SCIPY_MIN_VERSION = "0.14"
107-
TRAITS_MIN_VERSION = "4.6"
102+
NIBABEL_MIN_VERSION = "3.0"
103+
NETWORKX_MIN_VERSION = "2.5"
104+
NUMPY_MIN_VERSION = "1.21"
105+
SCIPY_MIN_VERSION = "1.8"
106+
TRAITS_MIN_VERSION = "6.2"
108107
DATEUTIL_MIN_VERSION = "2.2"
109108
SIMPLEJSON_MIN_VERSION = "3.8.0"
110109
PROV_MIN_VERSION = "1.5.2"

nipype/utils/draw_gantt_chart.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,14 @@ def draw_nodes(start, nodes_list, cores, minute_scale, space_between_minutes, co
302302
# Left
303303
left = 60
304304
for core in range(len(end_times)):
305-
if end_times[core] < node_start:
305+
try:
306+
end_time_condition = end_times[core] < node_start
307+
except TypeError:
308+
# if one has a timezone and one does not
309+
end_time_condition = end_times[core].replace(
310+
tzinfo=None
311+
) < node_start.replace(tzinfo=None)
312+
if end_time_condition:
306313
left += core * 30
307314
end_times[core] = datetime.datetime(
308315
node_finish.year,

0 commit comments

Comments
 (0)