File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
graalpython/lib-graalpython/modules Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -1015,6 +1015,19 @@ def pandas(**kwargs):
1015
1015
#define __Pyx_sst_abs(value) abs(value)
1016
1016
#elif SIZEOF_LONG >= SIZEOF_SIZE_T
1017
1017
#define __Pyx_sst_abs(value) labs(value)
1018
+ diff --git a/pandas/core/window.py b/pandas/core/window.py
1019
+ index 8657420..f7b3f08 100644
1020
+ --- a/pandas/core/window.py
1021
+ +++ b/pandas/core/window.py
1022
+ @@ -10,7 +10,7 @@ import warnings
1023
+
1024
+ import numpy as np
1025
+
1026
+ -import pandas._libs.window as libwindow
1027
+ +libwindow = None
1028
+ from pandas.compat._optional import import_optional_dependency
1029
+ from pandas.compat.numpy import function as nv
1030
+ from pandas.util._decorators import Appender, Substitution, cache_readonly
1018
1031
'''
1019
1032
cflags = "-allowcpp" if sys .implementation .name == "graalpython" else ""
1020
1033
install_from_pypi ("pandas==0.25.0" , patch = patch , add_cflags = cflags , ** kwargs )
You can’t perform that action at this time.
0 commit comments