Skip to content

Commit cbfacda

Browse files
committed
fix: follow meson docs for subproject
1 parent e2751a1 commit cbfacda

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pandas/_libs/meson.build

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
simdjson_proj = subproject(
2-
'simdjson',
3-
default_options: ['default_library=static'],
4-
)
1+
simdjson_proj = subproject('simdjson')
52
simdjson_dep = simdjson_proj.get_variable('simdjson_dep')
63

74
_algos_take_helper = custom_target(

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,10 @@ tag_prefix = "v"
141141
parentdir_prefix = "pandas-"
142142

143143
[tool.meson-python.args]
144-
setup = ['--vsenv'] # For Windows
144+
setup = [
145+
'--vsenv', # For Windows
146+
'--default-library=static'
147+
]
145148
install = ['--skip-subprojects']
146149

147150
[tool.cibuildwheel]

0 commit comments

Comments
 (0)