Skip to content

Commit 69f3e3e

Browse files
committed
Update pathsim-chem dependency to stable release >=0.2.0
1 parent 8286391 commit 69f3e3e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies = [
2121
"numpy",
2222
"waitress>=3.0",
2323
"pathsim",
24-
"pathsim-chem==0.2rc3",
24+
"pathsim-chem>=0.2.0",
2525
]
2626

2727
[project.optional-dependencies]

scripts/config/requirements-pyodide.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
--pre
77

88
pathsim
9-
pathsim-chem>=0.2rc2 # optional
9+
pathsim-chem>=0.2.0 # optional

src/lib/constants/dependencies.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Auto-generated by scripts/extract.py - DO NOT EDIT
22
// Source: scripts/config/requirements-pyodide.txt, scripts/config/pyodide.json
33

4-
export const PATHVIEW_VERSION = '0.7.0';
4+
export const PATHVIEW_VERSION = '0.8.0';
55

66
export const PYODIDE_VERSION = '0.26.2';
77
export const PYODIDE_CDN_URL = `https://cdn.jsdelivr.net/pyodide/v${PYODIDE_VERSION}/full/pyodide.mjs`;
88

99
export const PYODIDE_PRELOAD = ["numpy", "scipy", "micropip"] as const;
1010

1111
/** Package versions extracted at build time (pinned for runtime) */
12-
export const EXTRACTED_VERSIONS: Record<string, string> = {"pathsim": "0.16.8.dev3", "pathsim_chem": "0.2rc3"};
12+
export const EXTRACTED_VERSIONS: Record<string, string> = {"pathsim": "0.17.3.dev12", "pathsim_chem": "0.2rc4.dev6"};
1313

1414
export interface PackageConfig {
1515
pip: string;
@@ -27,7 +27,7 @@ export const PYTHON_PACKAGES: PackageConfig[] =
2727
"import": "pathsim"
2828
},
2929
{
30-
"pip": "pathsim-chem==0.2rc3",
30+
"pip": "pathsim-chem>=0.2.0",
3131
"required": false,
3232
"pre": true,
3333
"import": "pathsim_chem"

0 commit comments

Comments
 (0)