File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
graalpython/lib-graalpython/modules Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -387,13 +387,6 @@ def pytz(**kwargs):
387
387
388
388
389
389
def pandas (** kwargs ):
390
- try :
391
- import numpy as np
392
- except ImportError :
393
- print ("Installing required dependency: numpy" )
394
- numpy (** kwargs )
395
-
396
-
397
390
try :
398
391
import pytz as _dummy_pytz
399
392
except ImportError :
@@ -412,6 +405,12 @@ def pandas(**kwargs):
412
405
print ("Installing required dependency: dateutil" )
413
406
dateutil (** kwargs )
414
407
408
+ try :
409
+ import numpy as np
410
+ except ImportError :
411
+ print ("Installing required dependency: numpy" )
412
+ numpy (** kwargs )
413
+
415
414
# download pandas-0.20.3
416
415
patch = """diff --git a/pandas/_libs/src/period_helper.c b/pandas/_libs/src/period_helper.c
417
416
index 19f810e..2f01238 100644
You can’t perform that action at this time.
0 commit comments