File tree 2 files changed +1
-8
lines changed
2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,15 @@ project(
6
6
license : ' BSD-3' ,
7
7
meson_version : ' >=1.0.1' ,
8
8
default_options : [
9
- # TODO: investigate, does meson try to compile against debug Python
10
- # when buildtype = debug, this seems to be causing problems on CI
11
- # where provided Python is not compiled in debug mode
12
9
' buildtype=release' ,
13
10
# TODO: Reactivate werror, some warnings on Windows
14
11
#'werror=true',
15
12
' c_std=c99'
16
13
]
17
14
)
18
15
19
- py_mod = import (' python' )
20
16
fs = import (' fs' )
21
- py = py_mod.find_installation(' python' )
22
- py_dep = py.dependency ()
17
+ py = import (' python' ).find_installation()
23
18
tempita = files (' generate_pxi.py' )
24
19
versioneer = files (' generate_version.py' )
25
20
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ py.extension_module(
3
3
[' aggregations.pyx' ],
4
4
cython_args : [' -X always_allow_keywords=true' ],
5
5
include_directories : [inc_np, inc_pd],
6
- dependencies : [py_dep],
7
6
subdir : ' pandas/_libs/window' ,
8
7
override_options : [' cython_language=cpp' ],
9
8
install : true
@@ -14,7 +13,6 @@ py.extension_module(
14
13
[' indexers.pyx' ],
15
14
cython_args : [' -X always_allow_keywords=true' ],
16
15
include_directories : [inc_np, inc_pd],
17
- dependencies : [py_dep],
18
16
subdir : ' pandas/_libs/window' ,
19
17
install : true
20
18
)
You can’t perform that action at this time.
0 commit comments