Skip to content

Commit 877a6a5

Browse files
committed
Remove dep_py from the meson.build files
1 parent 5b9460d commit 877a6a5

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

meson.build

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@ cython_lower = '>=3.0.11'
2121
cython_upper = '<3.3'
2222

2323
py = import('python').find_installation(pure: false)
24-
if meson.is_cross_build() and host_machine.system() == 'emscripten'
25-
# Avoid picking up the runner's host python.pc via pkg-config.
26-
# For Pyodide, use the interpreter sysconfig data from pyodide-build instead.
27-
dep_py = py.dependency(method: 'system')
28-
else
29-
dep_py = py.dependency()
30-
endif
3124

3225
cc = meson.get_compiler('c')
3326
cy = meson.get_compiler('cython')
@@ -85,7 +78,7 @@ else
8578
have_acb_theta = true
8679
endif
8780

88-
pyflint_deps = [dep_py, gmp_dep, mpfr_dep, flint_dep]
81+
pyflint_deps = [gmp_dep, mpfr_dep, flint_dep]
8982

9083
add_project_arguments(
9184
'-X', 'embedsignature=True',

0 commit comments

Comments
 (0)