We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9460d commit 877a6a5Copy full SHA for 877a6a5
1 file changed
meson.build
@@ -21,13 +21,6 @@ cython_lower = '>=3.0.11'
21
cython_upper = '<3.3'
22
23
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
31
32
cc = meson.get_compiler('c')
33
cy = meson.get_compiler('cython')
@@ -85,7 +78,7 @@ else
85
78
have_acb_theta = true
86
79
endif
87
80
88
-pyflint_deps = [dep_py, gmp_dep, mpfr_dep, flint_dep]
81
+pyflint_deps = [gmp_dep, mpfr_dep, flint_dep]
89
82
90
83
add_project_arguments(
91
84
'-X', 'embedsignature=True',
0 commit comments