@@ -339,6 +339,7 @@ def test_emscripten(session: nox.Session):
339339 f"-C link-arg=-lpython{ info .pymajorminor } " ,
340340 "-C link-arg=-lexpat" ,
341341 "-C link-arg=-lmpdec" ,
342+ "-C link-arg=-lsqlite3" ,
342343 "-C link-arg=-lz" ,
343344 "-C link-arg=-lbz2" ,
344345 "-C link-arg=-sALLOW_MEMORY_GROWTH=1" ,
@@ -351,7 +352,7 @@ def test_emscripten(session: nox.Session):
351352 session ,
352353 "bash" ,
353354 "-c" ,
354- f"source { info .builddir / 'emsdk/emsdk_env.sh' } && cargo test" ,
355+ f"source { info .builddir / 'emsdk/emsdk_env.sh' } && cargo test" ,
355356 )
356357
357358
@@ -797,7 +798,7 @@ def _get_rust_default_target() -> str:
797798def _get_feature_sets () -> Tuple [Tuple [str , ...], ...]:
798799 """Returns feature sets to use for clippy job"""
799800 cargo_target = os .getenv ("CARGO_BUILD_TARGET" , "" )
800- if "wasm32-wasi " not in cargo_target :
801+ if "wasm32-wasip1 " not in cargo_target :
801802 # multiple-pymethods not supported on wasm
802803 return (
803804 ("--no-default-features" ,),
@@ -951,7 +952,7 @@ def set(
951952 f"""\
952953 implementation={ implementation }
953954version={ version }
954- build_flags={ ',' .join (build_flags )}
955+ build_flags={ "," .join (build_flags )}
955956suppress_build_script_link_lines=true
956957"""
957958 )
0 commit comments