We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69f3e3e commit 74149d0Copy full SHA for 74149d0
2 files changed
scripts/config/requirements-pyodide.txt
@@ -1,9 +1,7 @@
1
# Runtime dependencies for Pyodide (browser)
2
# These packages are installed via micropip at runtime
3
#
4
-# For pip install: use --pre flag to allow pre-releases
5
# For Pyodide runtime: "# optional" means installation failure won't block app
6
---pre
7
8
pathsim
9
pathsim-chem>=0.2.0 # optional
src/lib/constants/dependencies.ts
@@ -23,13 +23,13 @@ export const PYTHON_PACKAGES: PackageConfig[] =
23
{
24
"pip": "pathsim",
25
"required": true,
26
- "pre": true,
+ "pre": false,
27
"import": "pathsim"
28
},
29
30
"pip": "pathsim-chem>=0.2.0",
31
"required": false,
32
33
"import": "pathsim_chem"
34
}
35
];
0 commit comments