We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a73bbb + d0252ca commit 2c300e3Copy full SHA for 2c300e3
1 file changed
pyproject.toml
@@ -30,6 +30,11 @@ dependencies = [
30
"numpy>=1.15",
31
"scipy>=1.2",
32
"scikit-rf>=0.30",
33
+ # If a dependency ships native code that can't be installed in Pyodide,
34
+ # tag it with `; sys_platform != 'emscripten'` so a normal pip install
35
+ # still pulls it eagerly but micropip in the browser skips it. Pair
36
+ # this with a defensive re-export in `pathsim_rf/__init__.py`
37
+ # (the `.network` submodule already follows this pattern).
38
]
39
40
[dependency-groups]
0 commit comments