rowan-python 2.0.1__tar.gz → 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rowan_python-2.0.1 → rowan_python-2.0.2}/PKG-INFO +1 -1
- rowan_python-2.0.2/examples/basic_calculation_from_json.py +21 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/pixi.lock +154 -208
- {rowan_python-2.0.1 → rowan_python-2.0.2}/pyproject.toml +1 -1
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/rowan_rdkit/chem_utils.py +20 -20
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/workflow.py +10 -10
- rowan_python-2.0.1/examples/basic_calculation_from_json.py +0 -20
- {rowan_python-2.0.1 → rowan_python-2.0.2}/.envrc +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/.github/workflows/test.yml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/.gitignore +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/.pre-commit-config.yaml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/LICENSE +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/README.md +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/docs/images/deciduous-tree-favicon.png +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/docs/index.md +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/docs/rowan_rdkit.md +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/docs/stylesheets/colors.css +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/basic_calculation_with_constraint.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/basic_calculation_with_solvent.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/bde.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/cofolding_screen.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/conformer_dependent_redox.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/conformers.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/data/workflow_example.json +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/docking_screen.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/irc.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/macropka.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/multistage_opt.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/optimization.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/phenol_pka.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/pka.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/protein_cofolding.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/examples/scan.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/mkdocs.yml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/__init__.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/constants.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/folder.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/protein.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/py.typed +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/user.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.2}/rowan/utils.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import json
|
|
2
|
+
|
|
3
|
+
import rowan
|
|
4
|
+
|
|
5
|
+
# rowan.api_key = ""
|
|
6
|
+
|
|
7
|
+
with open("examples/data/workflow_example.json") as f:
|
|
8
|
+
workflow_data = json.load(f)
|
|
9
|
+
|
|
10
|
+
result = (
|
|
11
|
+
rowan.submit_workflow(
|
|
12
|
+
workflow_type="basic_calculation",
|
|
13
|
+
workflow_data=workflow_data,
|
|
14
|
+
name="basic calculation from json",
|
|
15
|
+
initial_molecule=workflow_data["initial_molecule"],
|
|
16
|
+
)
|
|
17
|
+
.wait_for_result()
|
|
18
|
+
.fetch_latest()
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
print(result)
|
|
@@ -10,31 +10,28 @@ environments:
|
|
|
10
10
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
|
11
11
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
|
12
12
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
|
|
13
|
-
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.
|
|
14
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
|
|
13
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
|
|
15
14
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
|
|
16
15
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
|
|
17
16
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
|
|
18
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-
|
|
19
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-
|
|
20
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-
|
|
17
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda
|
|
18
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda
|
|
19
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_4.conda
|
|
21
20
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
|
22
21
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
|
|
23
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.
|
|
24
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_3.conda
|
|
25
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_3.conda
|
|
22
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
|
|
26
23
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
|
27
24
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
28
25
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
29
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.
|
|
26
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
|
|
30
27
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.5-hec9711d_102_cp313.conda
|
|
31
28
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda
|
|
32
29
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
|
|
33
30
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
|
34
31
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
35
32
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
36
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
37
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
33
|
+
- pypi: https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl
|
|
34
|
+
- pypi: https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl
|
|
38
35
|
- pypi: https://files.pythonhosted.org/packages/e2/28/ffc026b26f441fc67bd21ab7f03b313ab3fe46714a14b516f931abe1a2d8/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
39
36
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
40
37
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
@@ -42,39 +39,39 @@ environments:
|
|
|
42
39
|
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
|
|
43
40
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
44
41
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
45
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
42
|
+
- pypi: https://files.pythonhosted.org/packages/1d/0f/571b2c7a3833ae419fe69ff7b479a78d313581785203cc70a8db90121b9a/numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
46
43
|
- pypi: https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
47
44
|
- pypi: https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl
|
|
48
45
|
- pypi: https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
49
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
46
|
+
- pypi: https://files.pythonhosted.org/packages/8b/6a/c6ec8e124bc621ce0706894f877c6f57d7c9c53cbc73510ac046d40b4dc7/rdkit-2025.3.5-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
50
47
|
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
51
48
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
52
49
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
53
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
50
|
+
- pypi: https://files.pythonhosted.org/packages/a0/ff/be39dd5325ae00c8b36e903512b5a62cae40ea3205deb7517de753c9fcad/stjames-0.0.96-py3-none-any.whl
|
|
54
51
|
- pypi: https://files.pythonhosted.org/packages/b5/00/d631e67a838026495268c2f6884f3711a15a9a2a96cd244fdaea53b823fb/typing_extensions-4.14.1-py3-none-any.whl
|
|
55
52
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
56
53
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
57
54
|
- pypi: ./
|
|
58
55
|
osx-arm64:
|
|
59
56
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
|
|
60
|
-
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.
|
|
57
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
|
|
61
58
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
|
|
62
59
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
|
|
63
60
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda
|
|
64
61
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
|
|
65
62
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
|
|
66
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.
|
|
63
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda
|
|
67
64
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
68
65
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
69
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.
|
|
66
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.2-he92f556_0.conda
|
|
70
67
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.13.5-hf3f3da0_102_cp313.conda
|
|
71
68
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda
|
|
72
69
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
|
|
73
70
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
|
|
74
71
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
75
72
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
76
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
77
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
73
|
+
- pypi: https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl
|
|
74
|
+
- pypi: https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl
|
|
78
75
|
- pypi: https://files.pythonhosted.org/packages/ea/12/a93df3366ed32db1d907d7593a94f1fe6293903e3e92967bebd6950ed12c/charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl
|
|
79
76
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
80
77
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
@@ -82,15 +79,15 @@ environments:
|
|
|
82
79
|
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
|
|
83
80
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
84
81
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
85
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
82
|
+
- pypi: https://files.pythonhosted.org/packages/20/4e/c116466d22acaf4573e58421c956c6076dc526e24a6be0903219775d862e/numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
86
83
|
- pypi: https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
87
84
|
- pypi: https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl
|
|
88
85
|
- pypi: https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
89
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
86
|
+
- pypi: https://files.pythonhosted.org/packages/c6/1d/4cc7d00c388dde4cb4ce6ff7c4314f0f2c0e342d5b7a7b779fc12c32cf5a/rdkit-2025.3.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
90
87
|
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
91
88
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
92
89
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
93
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
90
|
+
- pypi: https://files.pythonhosted.org/packages/a0/ff/be39dd5325ae00c8b36e903512b5a62cae40ea3205deb7517de753c9fcad/stjames-0.0.96-py3-none-any.whl
|
|
94
91
|
- pypi: https://files.pythonhosted.org/packages/b5/00/d631e67a838026495268c2f6884f3711a15a9a2a96cd244fdaea53b823fb/typing_extensions-4.14.1-py3-none-any.whl
|
|
95
92
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
96
93
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
@@ -105,46 +102,43 @@ environments:
|
|
|
105
102
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
|
106
103
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
|
107
104
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
|
|
108
|
-
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.
|
|
109
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
|
|
105
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
|
|
110
106
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
|
|
111
107
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
|
|
112
108
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
|
|
113
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-
|
|
114
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-
|
|
115
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-
|
|
109
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda
|
|
110
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda
|
|
111
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_4.conda
|
|
116
112
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
|
117
113
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
|
|
118
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.
|
|
119
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_3.conda
|
|
120
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_3.conda
|
|
114
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
|
|
121
115
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
|
122
116
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
123
117
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
124
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.
|
|
118
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
|
|
125
119
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.5-hec9711d_102_cp313.conda
|
|
126
120
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda
|
|
127
121
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
|
|
128
122
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
|
129
123
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
130
124
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
131
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
125
|
+
- pypi: https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl
|
|
132
126
|
- pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl
|
|
133
127
|
- pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl
|
|
134
128
|
- pypi: https://files.pythonhosted.org/packages/10/bf/fa31834dc27a7f05e5290eae47c82690edc3a7b37d58f7fb35a1bdbf355b/backrefs-5.9-py313-none-any.whl
|
|
135
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
129
|
+
- pypi: https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl
|
|
136
130
|
- pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl
|
|
137
131
|
- pypi: https://files.pythonhosted.org/packages/e2/28/ffc026b26f441fc67bd21ab7f03b313ab3fe46714a14b516f931abe1a2d8/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
138
132
|
- pypi: https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl
|
|
139
133
|
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
|
|
140
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
134
|
+
- pypi: https://files.pythonhosted.org/packages/1f/4a/722098d1848db4072cda71b69ede1e55730d9063bf868375264d0d302bc9/coverage-7.10.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
|
|
141
135
|
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
|
|
142
136
|
- pypi: https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl
|
|
143
137
|
- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl
|
|
144
138
|
- pypi: https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl
|
|
145
139
|
- pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
|
|
146
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
147
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
140
|
+
- pypi: https://files.pythonhosted.org/packages/4b/dd/00256082bf552b88373fd871526737ed456e2b7a0a5c97588d169d049c16/griffe-1.10.0-py3-none-any.whl
|
|
141
|
+
- pypi: https://files.pythonhosted.org/packages/7b/03/699f059a54b7873a11bf53389236c06640bf47be590aa87a521d7c4bb044/griffe_pydantic-1.1.6-py3-none-any.whl
|
|
148
142
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
149
143
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
150
144
|
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
|
|
@@ -162,16 +156,16 @@ environments:
|
|
|
162
156
|
- pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
|
|
163
157
|
- pypi: https://files.pythonhosted.org/packages/87/dc/fc063b78f4b769d1956319351704e23ebeba1e9e1d6a41b4b602325fd7e4/mkdocs_autorefs-1.4.2-py3-none-any.whl
|
|
164
158
|
- pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
|
|
165
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
159
|
+
- pypi: https://files.pythonhosted.org/packages/65/f4/90ad67125b4dd66e7884e4dbdfab82e3679eb92b751116f8bb25ccfe2f0c/mkdocs_material-9.6.16-py3-none-any.whl
|
|
166
160
|
- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
|
|
167
161
|
- pypi: https://files.pythonhosted.org/packages/de/b4/3c5eac68f31e124a55d255d318c7445840fa1be55e013f507556d6481913/mkdocstrings-0.30.0-py3-none-any.whl
|
|
168
162
|
- pypi: https://files.pythonhosted.org/packages/3b/dd/a24ee3de56954bfafb6ede7cd63c2413bb842cc48eb45e41c43a05a33074/mkdocstrings_python-1.16.12-py3-none-any.whl
|
|
169
163
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
170
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
164
|
+
- pypi: https://files.pythonhosted.org/packages/9f/0f/478b4dce1cb4f43cf0f0d00fba3030b21ca04a01b74d1cd272a528cf446f/mypy-1.17.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
171
165
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
172
166
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
173
167
|
- pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl
|
|
174
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
168
|
+
- pypi: https://files.pythonhosted.org/packages/1d/0f/571b2c7a3833ae419fe69ff7b479a78d313581785203cc70a8db90121b9a/numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
175
169
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
176
170
|
- pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
|
|
177
171
|
- pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl
|
|
@@ -187,64 +181,64 @@ environments:
|
|
|
187
181
|
- pypi: https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl
|
|
188
182
|
- pypi: https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
189
183
|
- pypi: https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl
|
|
190
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
184
|
+
- pypi: https://files.pythonhosted.org/packages/e4/06/43084e6cbd4b3bc0e80f6be743b2e79fbc6eed8de9ad8c629939fa55d972/pymdown_extensions-10.16.1-py3-none-any.whl
|
|
191
185
|
- pypi: https://files.pythonhosted.org/packages/29/16/c8a903f4c4dffe7a12843191437d7cd8e32751d5de349d45d3fe69544e87/pytest-8.4.1-py3-none-any.whl
|
|
192
186
|
- pypi: https://files.pythonhosted.org/packages/bc/16/4ea354101abb1287856baa4af2732be351c7bee728065aed451b678153fd/pytest_cov-6.2.1-py3-none-any.whl
|
|
193
187
|
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
|
|
194
188
|
- pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
195
189
|
- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
|
|
196
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
190
|
+
- pypi: https://files.pythonhosted.org/packages/8b/6a/c6ec8e124bc621ce0706894f877c6f57d7c9c53cbc73510ac046d40b4dc7/rdkit-2025.3.5-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
197
191
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
198
192
|
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
199
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
193
|
+
- pypi: https://files.pythonhosted.org/packages/55/bf/9cb1ea5e3066779e42ade8d0cd3d3b0582a5720a814ae1586f85014656b6/ruff-0.12.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
200
194
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
201
195
|
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
|
|
202
196
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
203
197
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
204
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
198
|
+
- pypi: https://files.pythonhosted.org/packages/a0/ff/be39dd5325ae00c8b36e903512b5a62cae40ea3205deb7517de753c9fcad/stjames-0.0.96-py3-none-any.whl
|
|
205
199
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
206
200
|
- pypi: https://files.pythonhosted.org/packages/b5/00/d631e67a838026495268c2f6884f3711a15a9a2a96cd244fdaea53b823fb/typing_extensions-4.14.1-py3-none-any.whl
|
|
207
201
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
208
202
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
209
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
203
|
+
- pypi: https://files.pythonhosted.org/packages/ca/ff/ded57ac5ff40a09e6e198550bab075d780941e0b0f83cbeabd087c59383a/virtualenv-20.33.1-py3-none-any.whl
|
|
210
204
|
- pypi: https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl
|
|
211
205
|
- pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl
|
|
212
206
|
- pypi: ./
|
|
213
207
|
osx-arm64:
|
|
214
208
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
|
|
215
|
-
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.
|
|
209
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
|
|
216
210
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
|
|
217
211
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda
|
|
218
212
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda
|
|
219
213
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
|
|
220
214
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
|
|
221
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.
|
|
215
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda
|
|
222
216
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
223
217
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
224
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.
|
|
218
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.2-he92f556_0.conda
|
|
225
219
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.13.5-hf3f3da0_102_cp313.conda
|
|
226
220
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda
|
|
227
221
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
|
|
228
222
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
|
|
229
223
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
230
224
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
231
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
225
|
+
- pypi: https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl
|
|
232
226
|
- pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl
|
|
233
227
|
- pypi: https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl
|
|
234
228
|
- pypi: https://files.pythonhosted.org/packages/10/bf/fa31834dc27a7f05e5290eae47c82690edc3a7b37d58f7fb35a1bdbf355b/backrefs-5.9-py313-none-any.whl
|
|
235
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
229
|
+
- pypi: https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl
|
|
236
230
|
- pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl
|
|
237
231
|
- pypi: https://files.pythonhosted.org/packages/ea/12/a93df3366ed32db1d907d7593a94f1fe6293903e3e92967bebd6950ed12c/charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl
|
|
238
232
|
- pypi: https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl
|
|
239
233
|
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
|
|
240
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
234
|
+
- pypi: https://files.pythonhosted.org/packages/02/a4/8d1088cd644750c94bc305d3cf56082b4cdf7fb854a25abb23359e74892f/coverage-7.10.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
241
235
|
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
|
|
242
236
|
- pypi: https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl
|
|
243
237
|
- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl
|
|
244
238
|
- pypi: https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl
|
|
245
239
|
- pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
|
|
246
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
247
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
240
|
+
- pypi: https://files.pythonhosted.org/packages/4b/dd/00256082bf552b88373fd871526737ed456e2b7a0a5c97588d169d049c16/griffe-1.10.0-py3-none-any.whl
|
|
241
|
+
- pypi: https://files.pythonhosted.org/packages/7b/03/699f059a54b7873a11bf53389236c06640bf47be590aa87a521d7c4bb044/griffe_pydantic-1.1.6-py3-none-any.whl
|
|
248
242
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
249
243
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
250
244
|
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
|
|
@@ -262,16 +256,16 @@ environments:
|
|
|
262
256
|
- pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
|
|
263
257
|
- pypi: https://files.pythonhosted.org/packages/87/dc/fc063b78f4b769d1956319351704e23ebeba1e9e1d6a41b4b602325fd7e4/mkdocs_autorefs-1.4.2-py3-none-any.whl
|
|
264
258
|
- pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
|
|
265
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
259
|
+
- pypi: https://files.pythonhosted.org/packages/65/f4/90ad67125b4dd66e7884e4dbdfab82e3679eb92b751116f8bb25ccfe2f0c/mkdocs_material-9.6.16-py3-none-any.whl
|
|
266
260
|
- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
|
|
267
261
|
- pypi: https://files.pythonhosted.org/packages/de/b4/3c5eac68f31e124a55d255d318c7445840fa1be55e013f507556d6481913/mkdocstrings-0.30.0-py3-none-any.whl
|
|
268
262
|
- pypi: https://files.pythonhosted.org/packages/3b/dd/a24ee3de56954bfafb6ede7cd63c2413bb842cc48eb45e41c43a05a33074/mkdocstrings_python-1.16.12-py3-none-any.whl
|
|
269
263
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
270
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
264
|
+
- pypi: https://files.pythonhosted.org/packages/07/ac/ee93fbde9d2242657128af8c86f5d917cd2887584cf948a8e3663d0cd737/mypy-1.17.1-cp313-cp313-macosx_11_0_arm64.whl
|
|
271
265
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
272
266
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
273
267
|
- pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl
|
|
274
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
268
|
+
- pypi: https://files.pythonhosted.org/packages/20/4e/c116466d22acaf4573e58421c956c6076dc526e24a6be0903219775d862e/numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
275
269
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
276
270
|
- pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
|
|
277
271
|
- pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl
|
|
@@ -287,26 +281,26 @@ environments:
|
|
|
287
281
|
- pypi: https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl
|
|
288
282
|
- pypi: https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
289
283
|
- pypi: https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl
|
|
290
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
284
|
+
- pypi: https://files.pythonhosted.org/packages/e4/06/43084e6cbd4b3bc0e80f6be743b2e79fbc6eed8de9ad8c629939fa55d972/pymdown_extensions-10.16.1-py3-none-any.whl
|
|
291
285
|
- pypi: https://files.pythonhosted.org/packages/29/16/c8a903f4c4dffe7a12843191437d7cd8e32751d5de349d45d3fe69544e87/pytest-8.4.1-py3-none-any.whl
|
|
292
286
|
- pypi: https://files.pythonhosted.org/packages/bc/16/4ea354101abb1287856baa4af2732be351c7bee728065aed451b678153fd/pytest_cov-6.2.1-py3-none-any.whl
|
|
293
287
|
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
|
|
294
288
|
- pypi: https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
295
289
|
- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
|
|
296
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
290
|
+
- pypi: https://files.pythonhosted.org/packages/c6/1d/4cc7d00c388dde4cb4ce6ff7c4314f0f2c0e342d5b7a7b779fc12c32cf5a/rdkit-2025.3.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
297
291
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
298
292
|
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
299
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
293
|
+
- pypi: https://files.pythonhosted.org/packages/a8/c9/3e24a8472484269b6b1821794141f879c54645a111ded4b6f58f9ab0705f/ruff-0.12.7-py3-none-macosx_11_0_arm64.whl
|
|
300
294
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
301
295
|
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
|
|
302
296
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
303
297
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
304
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
298
|
+
- pypi: https://files.pythonhosted.org/packages/a0/ff/be39dd5325ae00c8b36e903512b5a62cae40ea3205deb7517de753c9fcad/stjames-0.0.96-py3-none-any.whl
|
|
305
299
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
306
300
|
- pypi: https://files.pythonhosted.org/packages/b5/00/d631e67a838026495268c2f6884f3711a15a9a2a96cd244fdaea53b823fb/typing_extensions-4.14.1-py3-none-any.whl
|
|
307
301
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
308
302
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
309
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
303
|
+
- pypi: https://files.pythonhosted.org/packages/ca/ff/ded57ac5ff40a09e6e198550bab075d780941e0b0f83cbeabd087c59383a/virtualenv-20.33.1-py3-none-any.whl
|
|
310
304
|
- pypi: https://files.pythonhosted.org/packages/fe/c4/225c87bae08c8b9ec99030cd48ae9c4eca050a59bf5c2255853e18c87b50/watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
311
305
|
- pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl
|
|
312
306
|
- pypi: ./
|
|
@@ -339,30 +333,16 @@ packages:
|
|
|
339
333
|
requires_dist:
|
|
340
334
|
- typing-extensions>=4.0.0 ; python_full_version < '3.9'
|
|
341
335
|
requires_python: '>=3.8'
|
|
342
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
336
|
+
- pypi: https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl
|
|
343
337
|
name: anyio
|
|
344
|
-
version: 4.
|
|
345
|
-
sha256:
|
|
338
|
+
version: 4.10.0
|
|
339
|
+
sha256: 60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1
|
|
346
340
|
requires_dist:
|
|
347
341
|
- exceptiongroup>=1.0.2 ; python_full_version < '3.11'
|
|
348
342
|
- idna>=2.8
|
|
349
343
|
- sniffio>=1.1
|
|
350
344
|
- typing-extensions>=4.5 ; python_full_version < '3.13'
|
|
351
345
|
- trio>=0.26.1 ; extra == 'trio'
|
|
352
|
-
- anyio[trio] ; extra == 'test'
|
|
353
|
-
- blockbuster>=1.5.23 ; extra == 'test'
|
|
354
|
-
- coverage[toml]>=7 ; extra == 'test'
|
|
355
|
-
- exceptiongroup>=1.2.0 ; extra == 'test'
|
|
356
|
-
- hypothesis>=4.0 ; extra == 'test'
|
|
357
|
-
- psutil>=5.9 ; extra == 'test'
|
|
358
|
-
- pytest>=7.0 ; extra == 'test'
|
|
359
|
-
- trustme ; extra == 'test'
|
|
360
|
-
- truststore>=0.9.1 ; python_full_version >= '3.10' and extra == 'test'
|
|
361
|
-
- uvloop>=0.21 ; python_full_version < '3.14' and platform_python_implementation == 'CPython' and sys_platform != 'win32' and extra == 'test'
|
|
362
|
-
- packaging ; extra == 'doc'
|
|
363
|
-
- sphinx~=8.2 ; extra == 'doc'
|
|
364
|
-
- sphinx-rtd-theme ; extra == 'doc'
|
|
365
|
-
- sphinx-autodoc-typehints>=1.2.0 ; extra == 'doc'
|
|
366
346
|
requires_python: '>=3.9'
|
|
367
347
|
- pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl
|
|
368
348
|
name: asttokens
|
|
@@ -418,19 +398,19 @@ packages:
|
|
|
418
398
|
purls: []
|
|
419
399
|
size: 122909
|
|
420
400
|
timestamp: 1720974522888
|
|
421
|
-
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.
|
|
422
|
-
sha256:
|
|
423
|
-
md5:
|
|
401
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
|
|
402
|
+
sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1
|
|
403
|
+
md5: 74784ee3d225fc3dca89edb635b4e5cc
|
|
424
404
|
depends:
|
|
425
405
|
- __unix
|
|
426
406
|
license: ISC
|
|
427
407
|
purls: []
|
|
428
|
-
size:
|
|
429
|
-
timestamp:
|
|
430
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
408
|
+
size: 154402
|
|
409
|
+
timestamp: 1754210968730
|
|
410
|
+
- pypi: https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl
|
|
431
411
|
name: certifi
|
|
432
|
-
version: 2025.
|
|
433
|
-
sha256:
|
|
412
|
+
version: 2025.8.3
|
|
413
|
+
sha256: f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5
|
|
434
414
|
requires_python: '>=3.7'
|
|
435
415
|
- pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl
|
|
436
416
|
name: cfgv
|
|
@@ -459,17 +439,17 @@ packages:
|
|
|
459
439
|
version: 0.4.6
|
|
460
440
|
sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
|
|
461
441
|
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
|
|
462
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
442
|
+
- pypi: https://files.pythonhosted.org/packages/02/a4/8d1088cd644750c94bc305d3cf56082b4cdf7fb854a25abb23359e74892f/coverage-7.10.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
463
443
|
name: coverage
|
|
464
|
-
version: 7.
|
|
465
|
-
sha256:
|
|
444
|
+
version: 7.10.2
|
|
445
|
+
sha256: 96e5921342574a14303dfdb73de0019e1ac041c863743c8fe1aa6c2b4a257226
|
|
466
446
|
requires_dist:
|
|
467
447
|
- tomli ; python_full_version <= '3.11' and extra == 'toml'
|
|
468
448
|
requires_python: '>=3.9'
|
|
469
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
449
|
+
- pypi: https://files.pythonhosted.org/packages/1f/4a/722098d1848db4072cda71b69ede1e55730d9063bf868375264d0d302bc9/coverage-7.10.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
|
|
470
450
|
name: coverage
|
|
471
|
-
version: 7.
|
|
472
|
-
sha256:
|
|
451
|
+
version: 7.10.2
|
|
452
|
+
sha256: 6eb586fa7d2aee8d65d5ae1dd71414020b2f447435c57ee8de8abea0a77d5074
|
|
473
453
|
requires_dist:
|
|
474
454
|
- tomli ; python_full_version <= '3.11' and extra == 'toml'
|
|
475
455
|
requires_python: '>=3.9'
|
|
@@ -524,17 +504,17 @@ packages:
|
|
|
524
504
|
- markdown ; extra == 'dev'
|
|
525
505
|
- flake8 ; extra == 'dev'
|
|
526
506
|
- wheel ; extra == 'dev'
|
|
527
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
507
|
+
- pypi: https://files.pythonhosted.org/packages/4b/dd/00256082bf552b88373fd871526737ed456e2b7a0a5c97588d169d049c16/griffe-1.10.0-py3-none-any.whl
|
|
528
508
|
name: griffe
|
|
529
|
-
version: 1.
|
|
530
|
-
sha256:
|
|
509
|
+
version: 1.10.0
|
|
510
|
+
sha256: a5eec6d5431cc49eb636b8a078d2409844453c1b0e556e4ba26f8c923047cd11
|
|
531
511
|
requires_dist:
|
|
532
512
|
- colorama>=0.4
|
|
533
513
|
requires_python: '>=3.9'
|
|
534
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
514
|
+
- pypi: https://files.pythonhosted.org/packages/7b/03/699f059a54b7873a11bf53389236c06640bf47be590aa87a521d7c4bb044/griffe_pydantic-1.1.6-py3-none-any.whl
|
|
535
515
|
name: griffe-pydantic
|
|
536
|
-
version: 1.1.
|
|
537
|
-
sha256:
|
|
516
|
+
version: 1.1.6
|
|
517
|
+
sha256: 57a838dd1c3b5842a7ebada8fd80f2585a25b69c37f73ede19ca20fa9af055e6
|
|
538
518
|
requires_dist:
|
|
539
519
|
- griffe>=1.6.3
|
|
540
520
|
requires_python: '>=3.9'
|
|
@@ -573,18 +553,6 @@ packages:
|
|
|
573
553
|
- socksio==1.* ; extra == 'socks'
|
|
574
554
|
- zstandard>=0.18.0 ; extra == 'zstd'
|
|
575
555
|
requires_python: '>=3.8'
|
|
576
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
|
|
577
|
-
sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e
|
|
578
|
-
md5: 8b189310083baabfb622af68fd9d3ae3
|
|
579
|
-
depends:
|
|
580
|
-
- __glibc >=2.17,<3.0.a0
|
|
581
|
-
- libgcc-ng >=12
|
|
582
|
-
- libstdcxx-ng >=12
|
|
583
|
-
license: MIT
|
|
584
|
-
license_family: MIT
|
|
585
|
-
purls: []
|
|
586
|
-
size: 12129203
|
|
587
|
-
timestamp: 1720853576813
|
|
588
556
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
|
|
589
557
|
sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620
|
|
590
558
|
md5: 5eb22c1d7b3fc4abb50d92d621583137
|
|
@@ -775,40 +743,40 @@ packages:
|
|
|
775
743
|
purls: []
|
|
776
744
|
size: 39839
|
|
777
745
|
timestamp: 1743434670405
|
|
778
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-
|
|
779
|
-
sha256:
|
|
780
|
-
md5:
|
|
746
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda
|
|
747
|
+
sha256: 144e35c1c2840f2dc202f6915fc41879c19eddbb8fa524e3ca4aa0d14018b26f
|
|
748
|
+
md5: f406dcbb2e7bef90d793e50e79a2882b
|
|
781
749
|
depends:
|
|
782
750
|
- __glibc >=2.17,<3.0.a0
|
|
783
751
|
- _openmp_mutex >=4.5
|
|
784
752
|
constrains:
|
|
785
|
-
- libgcc-ng ==15.1.0=*
|
|
786
|
-
- libgomp 15.1.0
|
|
753
|
+
- libgcc-ng ==15.1.0=*_4
|
|
754
|
+
- libgomp 15.1.0 h767d61c_4
|
|
787
755
|
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
788
756
|
license_family: GPL
|
|
789
757
|
purls: []
|
|
790
|
-
size:
|
|
791
|
-
timestamp:
|
|
792
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-
|
|
793
|
-
sha256:
|
|
794
|
-
md5:
|
|
758
|
+
size: 824153
|
|
759
|
+
timestamp: 1753903866511
|
|
760
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda
|
|
761
|
+
sha256: 76ceac93ed98f208363d6e9c75011b0ff7b97b20f003f06461a619557e726637
|
|
762
|
+
md5: 28771437ffcd9f3417c66012dc49a3be
|
|
795
763
|
depends:
|
|
796
|
-
- libgcc 15.1.0
|
|
764
|
+
- libgcc 15.1.0 h767d61c_4
|
|
797
765
|
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
798
766
|
license_family: GPL
|
|
799
767
|
purls: []
|
|
800
|
-
size:
|
|
801
|
-
timestamp:
|
|
802
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-
|
|
803
|
-
sha256:
|
|
804
|
-
md5:
|
|
768
|
+
size: 29249
|
|
769
|
+
timestamp: 1753903872571
|
|
770
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_4.conda
|
|
771
|
+
sha256: e0487a8fec78802ac04da0ac1139c3510992bc58a58cde66619dde3b363c2933
|
|
772
|
+
md5: 3baf8976c96134738bba224e9ef6b1e5
|
|
805
773
|
depends:
|
|
806
774
|
- __glibc >=2.17,<3.0.a0
|
|
807
775
|
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
808
776
|
license_family: GPL
|
|
809
777
|
purls: []
|
|
810
|
-
size:
|
|
811
|
-
timestamp:
|
|
778
|
+
size: 447289
|
|
779
|
+
timestamp: 1753903801049
|
|
812
780
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
|
813
781
|
sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
|
|
814
782
|
md5: 1a580f7796c7bf6393fddb8bbbde58dc
|
|
@@ -853,50 +821,28 @@ packages:
|
|
|
853
821
|
purls: []
|
|
854
822
|
size: 71829
|
|
855
823
|
timestamp: 1748393749336
|
|
856
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.
|
|
857
|
-
sha256:
|
|
858
|
-
md5:
|
|
824
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
|
|
825
|
+
sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da
|
|
826
|
+
md5: 0b367fad34931cb79e0d6b7e5c06bb1c
|
|
859
827
|
depends:
|
|
860
828
|
- __glibc >=2.17,<3.0.a0
|
|
861
|
-
- icu >=75.1,<76.0a0
|
|
862
829
|
- libgcc >=14
|
|
863
830
|
- libzlib >=1.3.1,<2.0a0
|
|
864
831
|
license: blessing
|
|
865
832
|
purls: []
|
|
866
|
-
size:
|
|
867
|
-
timestamp:
|
|
868
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.
|
|
869
|
-
sha256:
|
|
870
|
-
md5:
|
|
833
|
+
size: 932581
|
|
834
|
+
timestamp: 1753948484112
|
|
835
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda
|
|
836
|
+
sha256: 802ebe62e6bc59fc26b26276b793e0542cfff2d03c086440aeaf72fb8bbcec44
|
|
837
|
+
md5: 1dcb0468f5146e38fae99aef9656034b
|
|
871
838
|
depends:
|
|
872
839
|
- __osx >=11.0
|
|
873
840
|
- icu >=75.1,<76.0a0
|
|
874
841
|
- libzlib >=1.3.1,<2.0a0
|
|
875
842
|
license: blessing
|
|
876
843
|
purls: []
|
|
877
|
-
size:
|
|
878
|
-
timestamp:
|
|
879
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_3.conda
|
|
880
|
-
sha256: 7650837344b7850b62fdba02155da0b159cf472b9ab59eb7b472f7bd01dff241
|
|
881
|
-
md5: 6d11a5edae89fe413c0569f16d308f5a
|
|
882
|
-
depends:
|
|
883
|
-
- __glibc >=2.17,<3.0.a0
|
|
884
|
-
- libgcc 15.1.0 h767d61c_3
|
|
885
|
-
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
886
|
-
license_family: GPL
|
|
887
|
-
purls: []
|
|
888
|
-
size: 3896407
|
|
889
|
-
timestamp: 1750808251302
|
|
890
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_3.conda
|
|
891
|
-
sha256: bbaea1ecf973a7836f92b8ebecc94d3c758414f4de39d2cc6818a3d10cb3216b
|
|
892
|
-
md5: 57541755b5a51691955012b8e197c06c
|
|
893
|
-
depends:
|
|
894
|
-
- libstdcxx 15.1.0 h8f9b012_3
|
|
895
|
-
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
896
|
-
license_family: GPL
|
|
897
|
-
purls: []
|
|
898
|
-
size: 29093
|
|
899
|
-
timestamp: 1750808292700
|
|
844
|
+
size: 902645
|
|
845
|
+
timestamp: 1753948599139
|
|
900
846
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
|
901
847
|
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
|
|
902
848
|
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
|
|
@@ -1025,10 +971,10 @@ packages:
|
|
|
1025
971
|
- platformdirs>=2.2.0
|
|
1026
972
|
- pyyaml>=5.1
|
|
1027
973
|
requires_python: '>=3.8'
|
|
1028
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
974
|
+
- pypi: https://files.pythonhosted.org/packages/65/f4/90ad67125b4dd66e7884e4dbdfab82e3679eb92b751116f8bb25ccfe2f0c/mkdocs_material-9.6.16-py3-none-any.whl
|
|
1029
975
|
name: mkdocs-material
|
|
1030
|
-
version: 9.6.
|
|
1031
|
-
sha256:
|
|
976
|
+
version: 9.6.16
|
|
977
|
+
sha256: 8d1a1282b892fe1fdf77bfeb08c485ba3909dd743c9ba69a19a40f637c6ec18c
|
|
1032
978
|
requires_dist:
|
|
1033
979
|
- babel~=2.10
|
|
1034
980
|
- backrefs~=5.7.post1
|
|
@@ -1085,10 +1031,10 @@ packages:
|
|
|
1085
1031
|
version: 10.7.0
|
|
1086
1032
|
sha256: d43980384673cb07d2f7d2d918c616b30c659c089ee23953f601d6609c67510e
|
|
1087
1033
|
requires_python: '>=3.9'
|
|
1088
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1034
|
+
- pypi: https://files.pythonhosted.org/packages/07/ac/ee93fbde9d2242657128af8c86f5d917cd2887584cf948a8e3663d0cd737/mypy-1.17.1-cp313-cp313-macosx_11_0_arm64.whl
|
|
1089
1035
|
name: mypy
|
|
1090
|
-
version: 1.17.
|
|
1091
|
-
sha256:
|
|
1036
|
+
version: 1.17.1
|
|
1037
|
+
sha256: 15d54056f7fe7a826d897789f53dd6377ec2ea8ba6f776dc83c2902b899fee81
|
|
1092
1038
|
requires_dist:
|
|
1093
1039
|
- typing-extensions>=4.6.0
|
|
1094
1040
|
- mypy-extensions>=1.0.0
|
|
@@ -1100,10 +1046,10 @@ packages:
|
|
|
1100
1046
|
- pip ; extra == 'install-types'
|
|
1101
1047
|
- orjson ; extra == 'faster-cache'
|
|
1102
1048
|
requires_python: '>=3.9'
|
|
1103
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1049
|
+
- pypi: https://files.pythonhosted.org/packages/9f/0f/478b4dce1cb4f43cf0f0d00fba3030b21ca04a01b74d1cd272a528cf446f/mypy-1.17.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
1104
1050
|
name: mypy
|
|
1105
|
-
version: 1.17.
|
|
1106
|
-
sha256:
|
|
1051
|
+
version: 1.17.1
|
|
1052
|
+
sha256: 099b9a5da47de9e2cb5165e581f158e854d9e19d2e96b6698c0d64de911dd849
|
|
1107
1053
|
requires_dist:
|
|
1108
1054
|
- typing-extensions>=4.6.0
|
|
1109
1055
|
- mypy-extensions>=1.0.0
|
|
@@ -1149,39 +1095,39 @@ packages:
|
|
|
1149
1095
|
version: 1.9.1
|
|
1150
1096
|
sha256: ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9
|
|
1151
1097
|
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
|
|
1152
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1098
|
+
- pypi: https://files.pythonhosted.org/packages/1d/0f/571b2c7a3833ae419fe69ff7b479a78d313581785203cc70a8db90121b9a/numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
1153
1099
|
name: numpy
|
|
1154
|
-
version: 2.3.
|
|
1155
|
-
sha256:
|
|
1100
|
+
version: 2.3.2
|
|
1101
|
+
sha256: 938065908d1d869c7d75d8ec45f735a034771c6ea07088867f713d1cd3bbbe4f
|
|
1156
1102
|
requires_python: '>=3.11'
|
|
1157
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1103
|
+
- pypi: https://files.pythonhosted.org/packages/20/4e/c116466d22acaf4573e58421c956c6076dc526e24a6be0903219775d862e/numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
1158
1104
|
name: numpy
|
|
1159
|
-
version: 2.3.
|
|
1160
|
-
sha256:
|
|
1105
|
+
version: 2.3.2
|
|
1106
|
+
sha256: efc81393f25f14d11c9d161e46e6ee348637c0a1e8a54bf9dedc472a3fae993b
|
|
1161
1107
|
requires_python: '>=3.11'
|
|
1162
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.
|
|
1163
|
-
sha256:
|
|
1164
|
-
md5:
|
|
1108
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda
|
|
1109
|
+
sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e
|
|
1110
|
+
md5: ffffb341206dd0dab0c36053c048d621
|
|
1165
1111
|
depends:
|
|
1166
1112
|
- __glibc >=2.17,<3.0.a0
|
|
1167
1113
|
- ca-certificates
|
|
1168
|
-
- libgcc >=
|
|
1114
|
+
- libgcc >=14
|
|
1169
1115
|
license: Apache-2.0
|
|
1170
1116
|
license_family: Apache
|
|
1171
1117
|
purls: []
|
|
1172
|
-
size:
|
|
1173
|
-
timestamp:
|
|
1174
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.
|
|
1175
|
-
sha256:
|
|
1176
|
-
md5:
|
|
1118
|
+
size: 3128847
|
|
1119
|
+
timestamp: 1754465526100
|
|
1120
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.2-he92f556_0.conda
|
|
1121
|
+
sha256: f6d1c87dbcf7b39fad24347570166dade1c533ae2d53c60a70fa4dc874ef0056
|
|
1122
|
+
md5: bcb0d87dfbc199d0a461d2c7ca30b3d8
|
|
1177
1123
|
depends:
|
|
1178
1124
|
- __osx >=11.0
|
|
1179
1125
|
- ca-certificates
|
|
1180
1126
|
license: Apache-2.0
|
|
1181
1127
|
license_family: Apache
|
|
1182
1128
|
purls: []
|
|
1183
|
-
size:
|
|
1184
|
-
timestamp:
|
|
1129
|
+
size: 3074848
|
|
1130
|
+
timestamp: 1754465710470
|
|
1185
1131
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
1186
1132
|
name: packaging
|
|
1187
1133
|
version: '25.0'
|
|
@@ -1365,10 +1311,10 @@ packages:
|
|
|
1365
1311
|
requires_dist:
|
|
1366
1312
|
- colorama>=0.4.6 ; extra == 'windows-terminal'
|
|
1367
1313
|
requires_python: '>=3.8'
|
|
1368
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1314
|
+
- pypi: https://files.pythonhosted.org/packages/e4/06/43084e6cbd4b3bc0e80f6be743b2e79fbc6eed8de9ad8c629939fa55d972/pymdown_extensions-10.16.1-py3-none-any.whl
|
|
1369
1315
|
name: pymdown-extensions
|
|
1370
|
-
version:
|
|
1371
|
-
sha256:
|
|
1316
|
+
version: 10.16.1
|
|
1317
|
+
sha256: d6ba157a6c03146a7fb122b2b9a121300056384eafeec9c9f9e584adfdb2a32d
|
|
1372
1318
|
requires_dist:
|
|
1373
1319
|
- markdown>=3.6
|
|
1374
1320
|
- pyyaml
|
|
@@ -1494,17 +1440,17 @@ packages:
|
|
|
1494
1440
|
requires_dist:
|
|
1495
1441
|
- pyyaml
|
|
1496
1442
|
requires_python: '>=3.9'
|
|
1497
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1443
|
+
- pypi: https://files.pythonhosted.org/packages/8b/6a/c6ec8e124bc621ce0706894f877c6f57d7c9c53cbc73510ac046d40b4dc7/rdkit-2025.3.5-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
1498
1444
|
name: rdkit
|
|
1499
|
-
version: 2025.3.
|
|
1500
|
-
sha256:
|
|
1445
|
+
version: 2025.3.5
|
|
1446
|
+
sha256: 65c636e4ea0e4bbf80261155e19f96de8e178271513f8823a4364e2939ee5791
|
|
1501
1447
|
requires_dist:
|
|
1502
1448
|
- numpy
|
|
1503
1449
|
- pillow
|
|
1504
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1450
|
+
- pypi: https://files.pythonhosted.org/packages/c6/1d/4cc7d00c388dde4cb4ce6ff7c4314f0f2c0e342d5b7a7b779fc12c32cf5a/rdkit-2025.3.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
1505
1451
|
name: rdkit
|
|
1506
|
-
version: 2025.3.
|
|
1507
|
-
sha256:
|
|
1452
|
+
version: 2025.3.5
|
|
1453
|
+
sha256: b564067066c97136c448c58ac796c66010d041a5fd5dccf8997461a1846e63b7
|
|
1508
1454
|
requires_dist:
|
|
1509
1455
|
- numpy
|
|
1510
1456
|
- pillow
|
|
@@ -1548,8 +1494,8 @@ packages:
|
|
|
1548
1494
|
requires_python: '>=3.8'
|
|
1549
1495
|
- pypi: ./
|
|
1550
1496
|
name: rowan-python
|
|
1551
|
-
version: 2.0.
|
|
1552
|
-
sha256:
|
|
1497
|
+
version: 2.0.2
|
|
1498
|
+
sha256: 1be16d4b806a376989c925f8c8770bbd1b855b7f8a05a82094f070138d766353
|
|
1553
1499
|
requires_dist:
|
|
1554
1500
|
- httpx
|
|
1555
1501
|
- stjames>=0.0.83
|
|
@@ -1558,15 +1504,15 @@ packages:
|
|
|
1558
1504
|
- nest-asyncio
|
|
1559
1505
|
requires_python: '>=3.9'
|
|
1560
1506
|
editable: true
|
|
1561
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1507
|
+
- pypi: https://files.pythonhosted.org/packages/55/bf/9cb1ea5e3066779e42ade8d0cd3d3b0582a5720a814ae1586f85014656b6/ruff-0.12.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
1562
1508
|
name: ruff
|
|
1563
|
-
version: 0.12.
|
|
1564
|
-
sha256:
|
|
1509
|
+
version: 0.12.7
|
|
1510
|
+
sha256: 06bfb01e1623bf7f59ea749a841da56f8f653d641bfd046edee32ede7ff6c606
|
|
1565
1511
|
requires_python: '>=3.7'
|
|
1566
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1512
|
+
- pypi: https://files.pythonhosted.org/packages/a8/c9/3e24a8472484269b6b1821794141f879c54645a111ded4b6f58f9ab0705f/ruff-0.12.7-py3-none-macosx_11_0_arm64.whl
|
|
1567
1513
|
name: ruff
|
|
1568
|
-
version: 0.12.
|
|
1569
|
-
sha256:
|
|
1514
|
+
version: 0.12.7
|
|
1515
|
+
sha256: 2e1c2a3b8626339bb6369116e7030a4cf194ea48f49b64bb505732a7fce4f4e3
|
|
1570
1516
|
requires_python: '>=3.7'
|
|
1571
1517
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
1572
1518
|
name: setuptools
|
|
@@ -1648,10 +1594,10 @@ packages:
|
|
|
1648
1594
|
- pygments ; extra == 'tests'
|
|
1649
1595
|
- littleutils ; extra == 'tests'
|
|
1650
1596
|
- cython ; extra == 'tests'
|
|
1651
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1597
|
+
- pypi: https://files.pythonhosted.org/packages/a0/ff/be39dd5325ae00c8b36e903512b5a62cae40ea3205deb7517de753c9fcad/stjames-0.0.96-py3-none-any.whl
|
|
1652
1598
|
name: stjames
|
|
1653
|
-
version: 0.0.
|
|
1654
|
-
sha256:
|
|
1599
|
+
version: 0.0.96
|
|
1600
|
+
sha256: dbf8ade7834fb5c883c30539bd5eb923f1924cbf53a0c1ecc924e30b94893685
|
|
1655
1601
|
requires_dist:
|
|
1656
1602
|
- pydantic>=2.4
|
|
1657
1603
|
- numpy
|
|
@@ -1727,10 +1673,10 @@ packages:
|
|
|
1727
1673
|
- pysocks>=1.5.6,!=1.5.7,<2.0 ; extra == 'socks'
|
|
1728
1674
|
- zstandard>=0.18.0 ; extra == 'zstd'
|
|
1729
1675
|
requires_python: '>=3.9'
|
|
1730
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1676
|
+
- pypi: https://files.pythonhosted.org/packages/ca/ff/ded57ac5ff40a09e6e198550bab075d780941e0b0f83cbeabd087c59383a/virtualenv-20.33.1-py3-none-any.whl
|
|
1731
1677
|
name: virtualenv
|
|
1732
|
-
version: 20.
|
|
1733
|
-
sha256:
|
|
1678
|
+
version: 20.33.1
|
|
1679
|
+
sha256: 07c19bc66c11acab6a5958b815cbcee30891cd1c2ccf53785a28651a0d8d8a67
|
|
1734
1680
|
requires_dist:
|
|
1735
1681
|
- distlib>=0.3.7,<1
|
|
1736
1682
|
- filelock>=3.12.2,<4
|
|
@@ -97,24 +97,24 @@ apply_nest_asyncio()
|
|
|
97
97
|
def _get_rdkit_mol_from_uuid(calculation_uuid: str) -> RdkitMol:
|
|
98
98
|
stjames_mol_dict = rowan.retrieve_calculation_molecules(calculation_uuid)[-1]
|
|
99
99
|
|
|
100
|
-
return Chem.MolFromXYZBlock(stjames.Molecule(**stjames_mol_dict).to_xyz())
|
|
100
|
+
return Chem.MolFromXYZBlock(stjames.Molecule(**stjames_mol_dict).to_xyz())
|
|
101
101
|
|
|
102
102
|
|
|
103
103
|
def _embed_rdkit_mol(rdkm: RdkitMol) -> RdkitMol:
|
|
104
104
|
try:
|
|
105
|
-
AllChem.SanitizeMol(rdkm)
|
|
105
|
+
AllChem.SanitizeMol(rdkm) # type: ignore [attr-defined]
|
|
106
106
|
except Exception as e:
|
|
107
107
|
raise ValueError("Molecule could not be generated -- invalid chemistry!") from e
|
|
108
108
|
|
|
109
|
-
rdkm = AllChem.AddHs(rdkm)
|
|
109
|
+
rdkm = AllChem.AddHs(rdkm) # type: ignore [attr-defined]
|
|
110
110
|
try:
|
|
111
|
-
assert AllChem.EmbedMolecule(rdkm, maxAttempts=200) >= 0
|
|
111
|
+
assert AllChem.EmbedMolecule(rdkm, maxAttempts=200) >= 0 # type: ignore [attr-defined]
|
|
112
112
|
except AssertionError as e:
|
|
113
|
-
status1 = AllChem.EmbedMolecule(rdkm, maxAttempts=200, useRandomCoords=True)
|
|
113
|
+
status1 = AllChem.EmbedMolecule(rdkm, maxAttempts=200, useRandomCoords=True) # type: ignore [attr-defined]
|
|
114
114
|
if status1 < 0:
|
|
115
115
|
raise ValueError("Cannot embed molecule!") from e
|
|
116
116
|
try:
|
|
117
|
-
assert AllChem.MMFFOptimizeMolecule(rdkm, maxIters=200) >= 0 # type: ignore
|
|
117
|
+
assert AllChem.MMFFOptimizeMolecule(rdkm, maxIters=200) >= 0 # type: ignore [attr-defined]
|
|
118
118
|
except AssertionError:
|
|
119
119
|
pass
|
|
120
120
|
|
|
@@ -477,9 +477,9 @@ async def _single_energy(
|
|
|
477
477
|
get_api_key()
|
|
478
478
|
method = stjames.Method(method)
|
|
479
479
|
|
|
480
|
-
if mol.GetNumConformers() == 0:
|
|
480
|
+
if mol.GetNumConformers() == 0:
|
|
481
481
|
mol = _embed_rdkit_mol(mol)
|
|
482
|
-
if mol.GetNumConformers() == 0:
|
|
482
|
+
if mol.GetNumConformers() == 0:
|
|
483
483
|
raise NoConformersError("This molecule has no conformers")
|
|
484
484
|
|
|
485
485
|
if method not in FAST_METHODS:
|
|
@@ -489,7 +489,7 @@ async def _single_energy(
|
|
|
489
489
|
|
|
490
490
|
workflow_uuids = []
|
|
491
491
|
for conformer in mol.GetConformers():
|
|
492
|
-
cid = conformer.GetId()
|
|
492
|
+
cid = conformer.GetId()
|
|
493
493
|
stjames_mol = _rdkit_to_stjames(mol, cid)
|
|
494
494
|
post = rowan.submit_workflow(
|
|
495
495
|
name=name,
|
|
@@ -623,9 +623,9 @@ async def _single_optimize(
|
|
|
623
623
|
get_api_key()
|
|
624
624
|
method = stjames.Method(method)
|
|
625
625
|
|
|
626
|
-
if mol.GetNumConformers() == 0:
|
|
626
|
+
if mol.GetNumConformers() == 0:
|
|
627
627
|
mol = _embed_rdkit_mol(mol)
|
|
628
|
-
if mol.GetNumConformers() == 0:
|
|
628
|
+
if mol.GetNumConformers() == 0:
|
|
629
629
|
raise NoConformersError("This molecule has no conformers")
|
|
630
630
|
|
|
631
631
|
if method not in FAST_METHODS:
|
|
@@ -637,7 +637,7 @@ async def _single_optimize(
|
|
|
637
637
|
|
|
638
638
|
workflow_uuids = []
|
|
639
639
|
for conformer in mol.GetConformers():
|
|
640
|
-
cid = conformer.GetId()
|
|
640
|
+
cid = conformer.GetId()
|
|
641
641
|
stjames_mol = _rdkit_to_stjames(mol, cid)
|
|
642
642
|
|
|
643
643
|
post = rowan.submit_workflow(
|
|
@@ -677,7 +677,7 @@ async def _single_optimize(
|
|
|
677
677
|
energies = [cacluation[-1]["energy"] for cacluation in calculations]
|
|
678
678
|
|
|
679
679
|
for i, conformer in enumerate(optimized_mol.GetConformers()):
|
|
680
|
-
conformer.SetPositions(np.array(optimized_positions[i]))
|
|
680
|
+
conformer.SetPositions(np.array(optimized_positions[i]))
|
|
681
681
|
|
|
682
682
|
return {
|
|
683
683
|
"molecule": mol,
|
|
@@ -796,9 +796,9 @@ async def _single_conformers(
|
|
|
796
796
|
get_api_key()
|
|
797
797
|
method = stjames.Method(method)
|
|
798
798
|
|
|
799
|
-
if mol.GetNumConformers() == 0:
|
|
799
|
+
if mol.GetNumConformers() == 0:
|
|
800
800
|
mol = _embed_rdkit_mol(mol)
|
|
801
|
-
if mol.GetNumConformers() == 0:
|
|
801
|
+
if mol.GetNumConformers() == 0:
|
|
802
802
|
raise NoConformersError("This molecule has no conformers")
|
|
803
803
|
|
|
804
804
|
if method not in FAST_METHODS:
|
|
@@ -858,12 +858,12 @@ async def _single_conformers(
|
|
|
858
858
|
lowest_n_uuids = [item[1][0] for item in sorted_data[:num_conformers]]
|
|
859
859
|
lowest_energies = [item[0] for item in sorted_data[:num_conformers]]
|
|
860
860
|
|
|
861
|
-
AllChem.EmbedMultipleConfs(mol, numConfs=num_conformers)
|
|
861
|
+
AllChem.EmbedMultipleConfs(mol, numConfs=num_conformers) # type: ignore [attr-defined]
|
|
862
862
|
|
|
863
863
|
for i, conformer in enumerate(mol.GetConformers()):
|
|
864
864
|
atoms = rowan.retrieve_calculation_molecules(lowest_n_uuids[i])[-1]["atoms"]
|
|
865
865
|
pos = [atom["position"] for atom in atoms]
|
|
866
|
-
conformer.SetPositions(np.array(pos))
|
|
866
|
+
conformer.SetPositions(np.array(pos))
|
|
867
867
|
|
|
868
868
|
return {
|
|
869
869
|
"molecule": mol,
|
|
@@ -959,9 +959,9 @@ async def _single_charges(
|
|
|
959
959
|
get_api_key()
|
|
960
960
|
method = stjames.Method(method)
|
|
961
961
|
|
|
962
|
-
if mol.GetNumConformers() == 0:
|
|
962
|
+
if mol.GetNumConformers() == 0:
|
|
963
963
|
mol = _embed_rdkit_mol(mol)
|
|
964
|
-
if mol.GetNumConformers() == 0:
|
|
964
|
+
if mol.GetNumConformers() == 0:
|
|
965
965
|
raise NoConformersError("This molecule has no conformers")
|
|
966
966
|
|
|
967
967
|
if method not in FAST_METHODS:
|
|
@@ -971,7 +971,7 @@ async def _single_charges(
|
|
|
971
971
|
|
|
972
972
|
workflow_uuids = []
|
|
973
973
|
for conformer in mol.GetConformers():
|
|
974
|
-
cid = conformer.GetId()
|
|
974
|
+
cid = conformer.GetId()
|
|
975
975
|
|
|
976
976
|
post = rowan.submit_workflow(
|
|
977
977
|
name=name,
|
|
@@ -416,7 +416,7 @@ def submit_conformer_search_workflow(
|
|
|
416
416
|
conf_gen_mode: str = "rapid",
|
|
417
417
|
final_method: stjames.Method | str = "aimnet2_wb97md3",
|
|
418
418
|
solvent: str | None = None,
|
|
419
|
-
|
|
419
|
+
transition_state: bool = False,
|
|
420
420
|
name: str = "Conformer Search Workflow",
|
|
421
421
|
folder_uuid: str | None = None,
|
|
422
422
|
max_credits: int | None = None,
|
|
@@ -433,7 +433,7 @@ def submit_conformer_search_workflow(
|
|
|
433
433
|
for options.
|
|
434
434
|
:param solvent: The solvent to use for the final optimization. See [the list of available solvents](https://github.com/rowansci/stjames-public/blob/master/stjames/solvent.py)
|
|
435
435
|
for valid values. Be aware that not all methods support solvents.
|
|
436
|
-
:param
|
|
436
|
+
:param transition_state: Whether to optimize the transition state.
|
|
437
437
|
:param name: The name of the workflow.
|
|
438
438
|
:param folder_uuid: The UUID of the folder to place the workflow in.
|
|
439
439
|
:param max_credits: The maximum number of credits to use for the workflow.
|
|
@@ -457,7 +457,7 @@ def submit_conformer_search_workflow(
|
|
|
457
457
|
tasks=["optimize"],
|
|
458
458
|
mode=stjames.Mode.AUTO,
|
|
459
459
|
solvent_settings={"solvent": solvent, "model": solvent_model} if solvent else None,
|
|
460
|
-
opt_settings={"transition_state":
|
|
460
|
+
opt_settings={"transition_state": transition_state, "constraints": []},
|
|
461
461
|
)
|
|
462
462
|
|
|
463
463
|
msos = stjames.MultiStageOptSettings(
|
|
@@ -471,7 +471,7 @@ def submit_conformer_search_workflow(
|
|
|
471
471
|
"conf_gen_mode": conf_gen_mode,
|
|
472
472
|
"mso_mode": "manual",
|
|
473
473
|
"solvent": solvent,
|
|
474
|
-
"
|
|
474
|
+
"transition_state": transition_state,
|
|
475
475
|
}
|
|
476
476
|
|
|
477
477
|
data = {
|
|
@@ -644,7 +644,7 @@ def submit_fukui_workflow(
|
|
|
644
644
|
optimization_method: str = "gfn2_xtb",
|
|
645
645
|
fukui_method: str = "gfn1_xtb",
|
|
646
646
|
solvent_settings: dict[str, str] | None = None,
|
|
647
|
-
name: str = "
|
|
647
|
+
name: str = "Fukui Workflow",
|
|
648
648
|
folder_uuid: str | None = None,
|
|
649
649
|
max_credits: int | None = None,
|
|
650
650
|
) -> Workflow:
|
|
@@ -652,9 +652,9 @@ def submit_fukui_workflow(
|
|
|
652
652
|
Submits a fukui workflow to the API.
|
|
653
653
|
|
|
654
654
|
:param initial_molecule: The molecule to calculate the fukui indices of.
|
|
655
|
-
:optimization_method: The method to use for the optimization.
|
|
656
|
-
:fukui_method: The method to use for the fukui calculation.
|
|
657
|
-
:solvent_settings: The solvent settings to use for the fukui calculation.
|
|
655
|
+
:param optimization_method: The method to use for the optimization.
|
|
656
|
+
:param fukui_method: The method to use for the fukui calculation.
|
|
657
|
+
:param solvent_settings: The solvent settings to use for the fukui calculation.
|
|
658
658
|
:param name: The name of the workflow.
|
|
659
659
|
:param folder_uuid: The UUID of the folder to place the workflow in.
|
|
660
660
|
:param max_credits: The maximum number of credits to use for the workflow.
|
|
@@ -670,9 +670,9 @@ def submit_fukui_workflow(
|
|
|
670
670
|
fukui_settings = stjames.Settings(method=fukui_method, solvent_settings=solvent_settings)
|
|
671
671
|
|
|
672
672
|
workflow_data = {
|
|
673
|
-
"opt_settings": optimization_settings,
|
|
673
|
+
"opt_settings": optimization_settings.model_dump(),
|
|
674
674
|
"opt_engine": stjames.Method(optimization_method).default_engine(),
|
|
675
|
-
"fukui_settings": fukui_settings,
|
|
675
|
+
"fukui_settings": fukui_settings.model_dump(),
|
|
676
676
|
"fukui_engine": stjames.Method(fukui_method).default_engine(),
|
|
677
677
|
}
|
|
678
678
|
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
|
|
3
|
-
import rowan
|
|
4
|
-
|
|
5
|
-
# rowan.api_key = ""
|
|
6
|
-
|
|
7
|
-
with open("examples/data/workflow_example.json", "r") as f:
|
|
8
|
-
workflow_data = json.load(f)
|
|
9
|
-
|
|
10
|
-
result = rowan.submit_workflow(
|
|
11
|
-
workflow_type="basic_calculation",
|
|
12
|
-
workflow_data=workflow_data,
|
|
13
|
-
name="basic calculation from json",
|
|
14
|
-
initial_molecule=workflow_data["initial_molecule"],
|
|
15
|
-
)
|
|
16
|
-
|
|
17
|
-
result.wait_for_result()
|
|
18
|
-
result.fetch_latest(in_place=True)
|
|
19
|
-
|
|
20
|
-
print(result)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|